| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | If we find an error in the range expression in a range-based for loop, and the | Richard Smith | 2013-08-21 | 1 | -7/+34 |
* | const'ify Sema::ActOnCompoundStmt by | Robert Wilhelm | 2013-08-19 | 1 | -8/+5 |
* | PR16875: The return type of a dependent function type is visible when it's | Richard Smith | 2013-08-14 | 1 | -6/+20 |
* | Add a new warning to -Wloop-analysis to detect suspicious increments or | Richard Trieu | 2013-08-06 | 1 | -0/+99 |
* | Handle a difference in lambda return type deduction between C++11 and C++1y: if | Richard Smith | 2013-07-26 | 1 | -2/+8 |
* | PR16708: If a lambda has an implicit return type, don't get confused if its r... | Richard Smith | 2013-07-26 | 1 | -17/+17 |
* | Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s... | Craig Topper | 2013-07-14 | 1 | -2/+2 |
* | ObjectiveC arc[qoi]: When due to change of certain methods' | Fariborz Jahanian | 2013-07-11 | 1 | -4/+3 |
* | ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and | Rafael Espindola | 2013-07-09 | 1 | -2/+4 |
* | Objective-C: Warn when fast enumeration variable isn't used. | Fariborz Jahanian | 2013-07-06 | 1 | -3/+0 |
* | Use SmallVectorImpl instead of SmallVector for iterators and references to av... | Craig Topper | 2013-07-04 | 1 | -1/+1 |
* | Fix a crash with -Wassign-enum, where we didn't adjust the APInt type of the | Joey Gouly | 2013-06-06 | 1 | -10/+11 |
* | Fix the indentation on the AST visitors used in -Wloop-analysis. | Richard Trieu | 2013-05-31 | 1 | -102/+103 |
* | Refactor places which perform contextual implicit conversions to go through a | Richard Smith | 2013-05-21 | 1 | -21/+19 |
* | First pass of semantic analysis for init-captures: check the initializer, build | Richard Smith | 2013-05-16 | 1 | -2/+2 |
* | C++1y: provide full 'auto' return type deduction for lambda expressions. This | Richard Smith | 2013-05-12 | 1 | -5/+19 |
* | C++1y auto return type: when a function contains no 'return' statements at all, | Richard Smith | 2013-05-10 | 1 | -3/+1 |
* | Implement most of N3638 (return type deduction for normal functions). | Richard Smith | 2013-05-04 | 1 | -3/+88 |
* | Implement template support for CapturedStmt | Wei Pan | 2013-05-04 | 1 | -6/+9 |
* | Test commit | Wei Pan | 2013-05-03 | 1 | -1/+1 |
* | Move CapturedStmt parameters to CapturedDecl | Ben Langmuir | 2013-05-03 | 1 | -5/+16 |
* | ArrayRef'ize InitializationSequence constructor and InitializationSequence::D... | Dmitri Gribenko | 2013-05-03 | 1 | -2/+2 |
* | Move parsing of identifiers in MS-style inline assembly into | John McCall | 2013-05-03 | 1 | -1/+0 |
* | When deducing an 'auto' type, don't modify the type-as-written. | Richard Smith | 2013-04-30 | 1 | -16/+12 |
* | Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there | Richard Smith | 2013-04-30 | 1 | -4/+9 |
* | Small CapturedStmt improvements | Ben Langmuir | 2013-04-29 | 1 | -1/+1 |
* | Test commit | Ben Langmuir | 2013-04-29 | 1 | -1/+1 |
* | Disable VLA diagnostic in C++1y mode, and add some tests. | Richard Smith | 2013-04-20 | 1 | -0/+2 |
* | Sema for Captured Statements | Tareq A. Siraj | 2013-04-16 | 1 | -0/+111 |
* | <rdar://problem/13540921> Fix a crasher when an Objective-C for-in loop gets ... | Douglas Gregor | 2013-04-08 | 1 | -8/+25 |
* | <rdar://problem/13540921> Cope with deduced 'auto' in a C++11 for-range loop ... | Douglas Gregor | 2013-04-08 | 1 | -0/+27 |
* | Add 178663 back. | Rafael Espindola | 2013-04-03 | 1 | -1/+1 |
* | Revert 178663. | Rafael Espindola | 2013-04-03 | 1 | -1/+1 |
* | Don't compute a patched/semantic storage class. | Rafael Espindola | 2013-04-03 | 1 | -1/+1 |
* | Fix a crash-on-valid where a block capture copy expression was | John McCall | 2013-03-22 | 1 | -0/+5 |
* | Add a clarifying note when a return statement is rejected because | John McCall | 2013-03-19 | 1 | -20/+22 |
* | Silence a number of static analyzer warnings with assertions and such. | Jordan Rose | 2013-03-05 | 1 | -0/+1 |
* | Warn on dropping the return value from a warn_unused_result function, even in | Matt Beaumont-Gay | 2013-02-26 | 1 | -5/+17 |
* | Replace TypeLoc llvm::cast support to be well-defined. | David Blaikie | 2013-02-18 | 1 | -1/+1 |
* | When a statement is dropped from the AST because it was invalid, make sure | Argyrios Kyrtzidis | 2013-02-15 | 1 | -0/+7 |
* | Patch to check for integer overflow. It has been | Fariborz Jahanian | 2013-01-24 | 1 | -8/+7 |
* | Suppress all -Wunused-value warnings from macro body expansions. | Matt Beaumont-Gay | 2013-01-17 | 1 | -2/+5 |
* | Implement C++11 semantics for [[noreturn]] attribute. This required splitting | Richard Smith | 2013-01-17 | 1 | -2/+1 |
* | Refactor to call ActOnFinishFullExpr on every full expression. Teach | Richard Smith | 2013-01-14 | 1 | -24/+42 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -7/+7 |
* | Fix -Wunused-comparison for comparisons in arguments to function-like macros. | Matt Beaumont-Gay | 2013-01-12 | 1 | -1/+1 |
* | Provide a better warning when case value overflows. | Fariborz Jahanian | 2013-01-10 | 1 | -2/+2 |
* | Issue warning when case value is too large to fit | Fariborz Jahanian | 2013-01-09 | 1 | -1/+9 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -3/+3 |
* | ArrayRefize CXXTryStmt. | Nico Weber | 2012-12-29 | 1 | -1/+1 |