| Commit message (Expand) | Author | Age | Files | Lines |
| * | Simplify parsing ellipsis in Parser::ParseAlignArgument, spotted by Doug. | Peter Collingbourne | 2011-10-24 | 1 | -4/+2 |
| * | Fix grammar for C++11 alignment specifiers, and add a few FIXMEs. | Peter Collingbourne | 2011-10-23 | 1 | -11/+27 |
| * | Improve the diagnostic when a comma ends up at the end of a declarator group | Richard Smith | 2011-10-19 | 1 | -3/+72 |
| * | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor | 2011-10-19 | 1 | -2/+8 |
| * | objc: allow class name qualified with protocols in | Fariborz Jahanian | 2011-10-18 | 1 | -1/+11 |
| * | objc: diagnose invalid argument to an | Fariborz Jahanian | 2011-10-18 | 1 | -0/+7 |
| * | Refactor __attribute__ parsing, and add a diagnostic if the r_paren at the end | Richard Smith | 2011-10-17 | 1 | -95/+61 |
| * | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -9/+22 |
| * | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+10 |
| * | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -68/+80 |
| * | Add typo correction for type names. | Kaelyn Uhrain | 2011-10-11 | 1 | -2/+4 |
| * | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 2011-10-06 | 1 | -0/+58 |
| * | OpenCL: add a non-standard extension, cl_clang_storage_class_specifiers, | Peter Collingbourne | 2011-10-06 | 1 | -16/+16 |
| * | Parse attributes written in an ObjC method parameter type as | John McCall | 2011-10-01 | 1 | -2/+0 |
| * | Add support for alignment-specifiers in C1X and C++11, remove | Peter Collingbourne | 2011-09-29 | 1 | -0/+65 |
| * | Add support for parsing the optional attribute-specifier-seq at the | Peter Collingbourne | 2011-09-29 | 1 | -0/+3 |
| * | ArrayRef-ifying the fields passed to Sema::ActOnFields | David Blaikie | 2011-09-22 | 1 | -1/+1 |
| * | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -2/+2 |
| * | Record the full source range of an attribute. | Argyrios Kyrtzidis | 2011-09-13 | 1 | -17/+18 |
| * | __module_private__ is inherited by redeclarations of an entity, and | Douglas Gregor | 2011-09-09 | 1 | -1/+1 |
| * | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor | 2011-09-09 | 1 | -1/+10 |
| * | Thread safety: added support for function scopes in attribute arguments. | Caitlin Sadowski | 2011-09-08 | 1 | -0/+20 |
| * | Thread Safety: Patch to implement delayed parsing of attributes within a | Caitlin Sadowski | 2011-09-08 | 1 | -141/+259 |
| * | Allow C++0x enumerations with a fixed underlying type in | Douglas Gregor | 2011-09-08 | 1 | -2/+3 |
| * | PR10458: Last part of providing 'auto' type specifier as an extension in C++9... | Richard Smith | 2011-09-04 | 1 | -1/+5 |
| * | PR10458: Finesse behaviour of C++0x features when in pre-0x mode. Accept for-... | Richard Smith | 2011-09-04 | 1 | -6/+4 |
| * | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -10/+6 |
| * | objc - fixes a regression in declaring c decls nested in | Fariborz Jahanian | 2011-08-30 | 1 | -0/+3 |
| * | Add support for Microsoft __ptr32 keyword. | Francois Pichet | 2011-08-25 | 1 | -2/+9 |
| * | Restore patch I reversed in r138040. Known buildbot | Fariborz Jahanian | 2011-08-22 | 1 | -0/+1 |
| * | Revers r138040. Need to look at a few buildbot failures. | Fariborz Jahanian | 2011-08-19 | 1 | -1/+0 |
| * | objective-c: Bring objective-c handling of decl context | Fariborz Jahanian | 2011-08-19 | 1 | -0/+1 |
| * | Add support for MSVC __unaligned attribute. Necessary to parse MSVC headers i... | Francois Pichet | 2011-08-18 | 1 | -2/+9 |
| * | Thread Safety: Added basic argument parsing for all new attributes. | Caitlin Sadowski | 2011-08-09 | 1 | -0/+80 |
| * | Parsing of C++0x lambda expressions, from John Freeman with help from | Douglas Gregor | 2011-08-04 | 1 | -1/+4 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -11/+11 |
| * | Add 'mutable' to the function declarator chunk, to be used when | Douglas Gregor | 2011-07-13 | 1 | -0/+1 |
| * | Properly protect colons when parsing a nested-name-specifier as part | John McCall | 2011-07-06 | 1 | -11/+16 |
| * | Clean up and refactor ParseFunctionDeclarator to reduce code | Douglas Gregor | 2011-07-05 | 1 | -250/+188 |
| * | Fix AST representations of alias-declarations which define tag types. Inside ... | Richard Smith | 2011-07-01 | 1 | -7/+13 |
| * | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis | 2011-06-22 | 1 | -4/+2 |
| * | Handle decltype keyword in Parser::isDeclarationSpecifier. | Francois Pichet | 2011-06-19 | 1 | -0/+4 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -1/+3 |
| * | Parse C++0x generalized initializers. | Sebastian Redl | 2011-06-05 | 1 | -2/+25 |
| * | Implement __underlying_type for libc++. | Alexis Hunt | 2011-05-19 | 1 | -0/+8 |
| * | Properly parse the 'default' and 'delete' keywords. | Alexis Hunt | 2011-05-12 | 1 | -7/+10 |
| * | Don't fail at parsing __declspec(property(get=get_func_name)). Just skip ever... | Francois Pichet | 2011-05-07 | 1 | -0/+8 |
| * | Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. | Alexis Hunt | 2011-05-06 | 1 | -3/+1 |
| * | Do defaulted constructors properly. | Alexis Hunt | 2011-05-06 | 1 | -0/+4 |
| * | Revert r130912 in order to approach defaulted functions from the other | Alexis Hunt | 2011-05-06 | 1 | -5/+0 |