Age | Commit message (Expand) | Author |
2012-02-16 | In Objective-C++, allow the keyword 'class' to be used as a property | Douglas Gregor |
2012-02-11 | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl |
2012-02-07 | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-25 | Avoid correcting unknown identifiers to types where types aren't allowed. | Kaelyn Uhrain |
2012-01-24 | Support decltype as a simple-type-specifier. | David Blaikie |
2012-01-21 | Make clang's AST model sizeof and typeof with potentially-evaluated operands ... | Eli Friedman |
2012-01-19 | For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro | Argyrios Kyrtzidis |
2012-01-04 | Stub out the Sema interface for lambda expressions, and change the parser to ... | Eli Friedman |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-12-22 | Fix a parser bug that prevented it from correctly parsing explicit construct ... | Sebastian Redl |
2011-12-20 | Unlike in C++03, a constant-expression is not an unevaluated operand in C++11. | Richard Smith |
2011-12-20 | Refine error diagnostic for using bridged casts when not using ARC. | Ted Kremenek |
2011-12-19 | objc-arc: bridge casts in non-arc mode are now | Fariborz Jahanian |
2011-12-19 | objc-arc: bridge casts in non-objc-arc mode are ignord. | Fariborz Jahanian |
2011-12-04 | Support decltype in nested-name-specifiers. | David Blaikie |
2011-12-03 | Implement support for the __is_final type trait, to determine whether | Douglas Gregor |
2011-11-07 | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor |
2011-11-05 | Correct the grammar for __builtin_astype. | Peter Collingbourne |
2011-10-19 | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor |
2011-10-17 | Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', | Richard Smith |
2011-10-15 | Implement -Wc++98-compat warnings for the parser. | Richard Smith |
2011-10-14 | Provide half floating point support as a storage only type. | Anton Korobeynikov |
2011-10-12 | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-19 | Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. | Argyrios Kyrtzidis |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-09-04 | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis |
2011-08-04 | Parsing of C++0x lambda expressions, from John Freeman with help from | Douglas Gregor |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-07-26 | Fix a stray instantiation comment in Parse. | Chandler Carruth |
2011-07-25 | Mechanically rename SourceManager::getInstantiationLoc and | Chandler Carruth |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-14 | Convert terminology in the Lexer from 'instantiate' and variants to | Chandler Carruth |
2011-07-13 | Add 'mutable' to the function declarator chunk, to be used when | Douglas Gregor |
2011-07-08 | Remove a no-op break after a return, and correct one of the most | Chandler Carruth |
2011-07-08 | Minor style cleanup. | Chandler Carruth |
2011-07-07 | Move SourceManager::isAt[Start/End]OfMacroInstantiation functions to the Lexe... | Argyrios Kyrtzidis |
2011-07-07 | Make the Preprocessor more memory efficient and improve macro instantiation d... | Argyrios Kyrtzidis |
2011-07-01 | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis |
2011-07-01 | -Remove Sema::ActOnCastOfParenListExpr and move most of its functionality to | Argyrios Kyrtzidis |
2011-07-01 | For code such as: | Richard Trieu |
2011-06-24 | Allow the fixit for missing ':' in the ?: ternary operator if it is pointing | Argyrios Kyrtzidis |
2011-06-22 | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis |
2011-06-17 | Only accept __bridge_retain in system headers, as Doug suggested. | John McCall |
2011-06-17 | As a hopefully temporary workaround for a header mistake, treat | John McCall |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-13 | Correct the spelling of instantiation | David Majnemer |
2011-06-05 | Parse C++0x generalized initializers. | Sebastian Redl |
2011-06-04 | Add support for builtin astype: | Tanya Lattner |