summaryrefslogtreecommitdiffstats
path: root/lib/Parse/ParseExpr.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merging r156031:Bill Wendling2012-05-121-1/+1
* Implement the last part of C++ [class.mem]p2, delaying the parsing ofDouglas Gregor2012-04-161-1/+1
* Add an AttributedStmt type to represent a statement with C++11 attributesRichard Smith2012-04-141-3/+1
* Disambiguation of '[[':Richard Smith2012-04-101-1/+9
* For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith2012-04-041-0/+1
* Enter an expression evaluation context when parsingJohn McCall2012-04-041-1/+7
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-32/+32
* Support for raw and template forms of numeric user-defined literals,Richard Smith2012-03-091-9/+4
* Streamline BalancedDelimiterTracker, by eliminating the duplicateDouglas Gregor2012-03-081-6/+11
* Add clang support for new Objective-C literal syntax for NSDictionary, NSArray,Ted Kremenek2012-03-061-0/+13
* User-defined literals: reject string and character UDLs in all places where theRichard Smith2012-03-061-8/+15
* Avoid examining the AST from the parser, and simplify somewhat.Richard Smith2012-03-011-15/+13
* Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. AlsoRichard Smith2012-03-011-12/+28
* Make the odr-use logic work correctly for constant-expressions. PR12006.Eli Friedman2012-02-291-1/+2
* Half of PR12088: parse braced-init-lists on the RHS of assignment operators.Richard Smith2012-02-261-3/+14
* ArrayRef'ize various functions in the AST/Parser/Sema.Ahmed Charles2012-02-251-4/+4
* Implement a new type trait __is_trivially_constructible(T, Args...)Douglas Gregor2012-02-241-0/+3
* Provide the __is_trivially_assignable type trait, which providesDouglas Gregor2012-02-231-0/+1
* Fix typo correction of template arguments to once again allow type names.Kaelyn Uhrain2012-02-221-2/+2
* Change wording of warning about using __bridge casts in non-ARC.Ted Kremenek2012-02-181-1/+1
* Reject continue/break statements within members of local functions nested withinRichard Smith2012-02-171-1/+0
* In Objective-C++, allow the keyword 'class' to be used as a propertyDouglas Gregor2012-02-161-6/+20
* Represent C++ direct initializers as ParenListExprs before semantic analysisSebastian Redl2012-02-111-2/+2
* Make parsing of objc @implementations more robust.Argyrios Kyrtzidis2012-02-071-1/+2
* Added source location for the template keyword in AST template-id expressions.Abramo Bagnara2012-01-271-7/+8
* Avoid correcting unknown identifiers to types where types aren't allowed.Kaelyn Uhrain2012-01-251-10/+39
* Support decltype as a simple-type-specifier.David Blaikie2012-01-241-0/+1
* Make clang's AST model sizeof and typeof with potentially-evaluated operands ...Eli Friedman2012-01-211-16/+2
* For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macroArgyrios Kyrtzidis2012-01-191-2/+2
* Stub out the Sema interface for lambda expressions, and change the parser to ...Eli Friedman2012-01-041-1/+6
* Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ...Benjamin Kramer2011-12-231-8/+8
* Fix a parser bug that prevented it from correctly parsing explicit construct ...Sebastian Redl2011-12-221-1/+2
* Unlike in C++03, a constant-expression is not an unevaluated operand in C++11.Richard Smith2011-12-201-7/+8
* Refine error diagnostic for using bridged casts when not using ARC.Ted Kremenek2011-12-201-3/+4
* objc-arc: bridge casts in non-arc mode are nowFariborz Jahanian2011-12-191-1/+1
* objc-arc: bridge casts in non-objc-arc mode are ignord.Fariborz Jahanian2011-12-191-6/+16
* Support decltype in nested-name-specifiers.David Blaikie2011-12-041-0/+1
* Implement support for the __is_final type trait, to determine whetherDouglas Gregor2011-12-031-0/+2
* Tighten up the conditions under which we consider ourselves to beDouglas Gregor2011-11-071-2/+4
* Correct the grammar for __builtin_astype.Peter Collingbourne2011-11-051-1/+1
* Improve the warning for cv-qualifiers on free functions, from Ahmed Charles!Douglas Gregor2011-10-191-0/+2
* Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t',Richard Smith2011-10-171-1/+6
* Implement -Wc++98-compat warnings for the parser.Richard Smith2011-10-151-4/+9
* Provide half floating point support as a storage only type.Anton Korobeynikov2011-10-141-0/+1
* Introduce BalancedDelimiterTracker, to better track open/closeDouglas Gregor2011-10-121-48/+65
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-1/+1
* Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.Argyrios Kyrtzidis2011-09-191-3/+3
* Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet2011-09-171-1/+1
* Support code-completion for C++ inline methods and ObjC buffering methods.Argyrios Kyrtzidis2011-09-041-13/+15
* Parsing of C++0x lambda expressions, from John Freeman with help fromDouglas Gregor2011-08-041-0/+10