| Commit message (Expand) | Author | Age | Files | Lines |
* | Avoid correcting unknown identifiers to types where types aren't allowed. | Kaelyn Uhrain | 2012-01-25 | 1 | -1/+1 |
* | Support decltype as a simple-type-specifier. | David Blaikie | 2012-01-24 | 1 | -1/+4 |
* | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -1/+1 |
* | Remove PotentiallyPotentiallyEvaluated, and replace it with a much simpler an... | Eli Friedman | 2012-01-20 | 1 | -4/+4 |
* | Extend the error of invalid token after declarations to include fixits for | Richard Trieu | 2012-01-19 | 1 | -5/+1 |
* | Change the error when a '+=' follows a declaration to suggest a fixit to '=' ... | Richard Trieu | 2012-01-18 | 1 | -2/+6 |
* | Remove unnecessary default cases in switches over enums. | David Blaikie | 2012-01-17 | 1 | -2/+0 |
* | More lambda work. Fixes a minor bug Richard pointed out, makes lookup for la... | Eli Friedman | 2012-01-06 | 1 | -5/+6 |
* | More lambda work. Tweak the Sema interface slightly. Start adding the pieces... | Eli Friedman | 2012-01-05 | 1 | -5/+2 |
* | Add an explicit LambdaExprContext to Declarator, to parallel BlockLiteralCont... | Eli Friedman | 2012-01-04 | 1 | -1/+1 |
* | Fix messed-up indentation in r147515. | Eli Friedman | 2012-01-04 | 1 | -7/+7 |
* | Stub out the Sema interface for lambda expressions, and change the parser to ... | Eli Friedman | 2012-01-04 | 1 | -17/+42 |
* | Remove unused variables. | Rafael Espindola | 2011-12-25 | 1 | -1/+1 |
* | Silence gcc warnings. | Benjamin Kramer | 2011-12-18 | 1 | -1/+1 |
* | Support decltype in pseudo destructors and dependent destructor calls. | David Blaikie | 2011-12-16 | 1 | -0/+11 |
* | Decltype in non-pseudo (& non-dependent) dtor calls. | David Blaikie | 2011-12-08 | 1 | -0/+10 |
* | Support decltype in nested-name-specifiers. | David Blaikie | 2011-12-04 | 1 | -0/+16 |
* | Implement support for the __is_final type trait, to determine whether | Douglas Gregor | 2011-12-03 | 1 | -0/+1 |
* | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor | 2011-11-07 | 1 | -1/+1 |
* | Remove duplicate word & unnecessary conditional. | David Blaikie | 2011-11-07 | 1 | -3/+2 |
* | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor | 2011-10-19 | 1 | -0/+2 |
* | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -0/+5 |
* | Don't warn about use of 'final' in ill-formed C++98 code which didn't use | Richard Smith | 2011-10-15 | 1 | -1/+1 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+4 |
* | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -105/+126 |
* | Catch placeholder types in DefaultLvalueConversion | John McCall | 2011-10-11 | 1 | -8/+0 |
* | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -3/+1 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -6/+6 |
* | Fix a problem in digraph handling where "[:" might be treated as "<::" and | Richard Trieu | 2011-09-20 | 1 | -1/+1 |
* | Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. | Argyrios Kyrtzidis | 2011-09-19 | 1 | -2/+2 |
* | Changes to the name lookup have caused a regression in the digraph fix-it hint. | Richard Trieu | 2011-09-19 | 1 | -22/+26 |
* | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -1/+1 |
* | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -7/+6 |
* | Parsing of C++0x lambda expressions, from John Freeman with help from | Douglas Gregor | 2011-08-04 | 1 | -0/+261 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
* | Properly implement the scope restriction on the NRVO for | Douglas Gregor | 2011-07-06 | 1 | -2/+2 |
* | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis | 2011-07-01 | 1 | -7/+12 |
* | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis | 2011-07-01 | 1 | -3/+10 |
* | Introduce Declarator::CXXNewContext and remove 'AutoAllowedInTypeName' parameter | Argyrios Kyrtzidis | 2011-06-28 | 1 | -1/+1 |
* | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis | 2011-06-22 | 1 | -9/+2 |
* | Parse C++0x generalized initializers. | Sebastian Redl | 2011-06-05 | 1 | -22/+38 |
* | Implement __underlying_type for libc++. | Alexis Hunt | 2011-05-19 | 1 | -0/+1 |
* | Implement the __is_trivially_copyable type trait | Alexis Hunt | 2011-05-13 | 1 | -0/+1 |
* | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -1/+2 |
* | Fix a double free when parsing malformed code. Fixes rdar://9173693. | Argyrios Kyrtzidis | 2011-05-03 | 1 | -2/+5 |
* | Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. | Chandler Carruth | 2011-05-01 | 1 | -2/+0 |
* | Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin d... | Francois Pichet | 2011-04-28 | 1 | -0/+4 |
* | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+52 |
* | t/clang/type-traits | John Wiegley | 2011-04-27 | 1 | -4/+31 |
* | Simplify the parser's handling of Sema::ClassifyName() for types, by | Douglas Gregor | 2011-04-27 | 1 | -2/+1 |