| Commit message (Expand) | Author | Age | Files | Lines |
| * | [C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterato... | Aaron Ballman | 2014-03-14 | 1 | -5/+4 |
| * | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-12 | 1 | -14/+14 |
| * | Move the warning about unused relational comparison from -Wunused-value to | Richard Trieu | 2014-03-11 | 1 | -7/+20 |
| * | Reverting llvm::distance changes to use std::distance with iterators instead,... | Aaron Ballman | 2014-03-10 | 1 | -2/+1 |
| * | [C++11] Replacing RecordDecl iterators field_begin() and field_end() with ite... | Aaron Ballman | 2014-03-08 | 1 | -3/+1 |
| * | [C++11] Replacing EnumDecl iterators enumerator_begin() and enumerator_end() ... | Aaron Ballman | 2014-03-08 | 1 | -6/+4 |
| * | Rename getResultLoc() too | Alp Toker | 2014-01-25 | 1 | -1/+1 |
| * | Rename getResultType() on function and method declarations to getReturnType() | Alp Toker | 2014-01-25 | 1 | -6/+6 |
| * | Combine the checks for returns_nonnull and for operator new returning null, i... | Artyom Skrobov | 2014-01-24 | 1 | -23/+2 |
| * | Fix to PR8880 (clang dies processing a for loop) | Serge Pavlov | 2014-01-23 | 1 | -12/+44 |
| * | Add basic checking for returning null from functions/methods marked 'returns_... | Ted Kremenek | 2014-01-22 | 1 | -2/+10 |
| * | Issue a warning if a throwing operator new or operator new[] returns a null | Richard Smith | 2014-01-17 | 1 | -0/+22 |
| * | Replacing calls to getAttr with calls to hasAttr for clarity. No functional c... | Aaron Ballman | 2013-12-19 | 1 | -4/+4 |
| * | -Wassign-enum: compare unqualified types | Dmitri Gribenko | 2013-12-05 | 1 | -2/+2 |
| * | Allow the warning 'case value not in enumerated type' to be silenced with | Dmitri Gribenko | 2013-12-05 | 1 | -8/+39 |
| * | Issue diagnostic when constructor or destructor | Fariborz Jahanian | 2013-12-03 | 1 | -4/+16 |
| * | Remove a whole lot of unused variables | Alp Toker | 2013-11-27 | 1 | -2/+0 |
| * | Improve the error message for attempting to build a for range loop using a | Richard Trieu | 2013-10-11 | 1 | -2/+17 |
| * | ObjectiveC. ObjectiveC's collection selector expression in | Fariborz Jahanian | 2013-10-10 | 1 | -0/+3 |
| * | Remove support for arrays of runtime bound in C++1y, now they have been voted | Richard Smith | 2013-10-01 | 1 | -2/+0 |
| * | Refactor to use C++1y 'auto' semantics directly in lambdas with no specified | Richard Smith | 2013-09-25 | 1 | -34/+47 |
| * | Note when a decl is used in AST files. | Eli Friedman | 2013-09-05 | 1 | -2/+2 |
| * | Cleanup of OpaquePtr. No functionality changes. | Serge Pavlov | 2013-08-27 | 1 | -2/+2 |
| * | Revert "Implement a rudimentary form of generic lambdas." | Manuel Klimek | 2013-08-22 | 1 | -42/+24 |
| * | const'ify Sema::ActOnCXXTryBlock by | Robert Wilhelm | 2013-08-22 | 1 | -7/+4 |
| * | Implement a rudimentary form of generic lambdas. | Faisal Vali | 2013-08-22 | 1 | -24/+42 |
| * | 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 |