summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseDecl.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add support for the C11 _Alignof keyword.Jordan Rose2012-06-301-1/+1
* Use -frewrite-includes for crash reports.David Blaikie2012-06-291-0/+2
* Whitespace.Chad Rosier2012-06-261-147/+147
* Extend the "expected ';' after struct" logic to also apply to enums, and toRichard Smith2012-06-251-4/+23
* Recognize GNU attributes after 'enum class'. Fixes the libc++ build.John McCall2012-06-231-1/+8
* Clean up a large number of C++11 attribute parse issues, including parsingAlexis Hunt2012-06-231-18/+51
* Reapply r158700 and fixup patches, minus one hunk that slipped through andAlexis Hunt2012-06-191-2/+5
* Reapplying the changes from r158717 as they were rolled back to avoid merge c...Aaron Ballman2012-06-191-37/+143
* Revert r158700 and dependent patches r158716, r158717, and r158731.Jakob Stoklund Olesen2012-06-191-148/+39
* Improves parsing and semantic analysis for MS __declspec attributes. This in...Aaron Ballman2012-06-191-37/+143
* Improve the specification of spellings in Attr.td.Alexis Hunt2012-06-191-2/+5
* Handle C++11 attribute namespaces automatically.Alexis Hunt2012-06-181-11/+16
* [MSExtensions] Add support for __forceinline.Michael J. Spencer2012-06-181-3/+8
* Recover when correcting an unknown type name to a keyword like "struct".Kaelyn Uhrain2012-06-151-3/+7
* If parsing a trailing-return-type fails, don't pretend we didn't have one atRichard Smith2012-06-121-2/+2
* Recognize the MS inheritance attributes and turn them into attributesJohn McCall2012-05-221-4/+0
* CXXThisScopeRAII objects aren't free, don't compute one if it's unused.Benjamin Kramer2012-05-171-1/+1
* [libclang/AST] When declaring a local class, don't neglect to set the end loc...Argyrios Kyrtzidis2012-05-161-0/+1
* Move the warnings for extra semi-colons under -Wextra-semi. Also, addedRichard Trieu2012-05-161-4/+2
* Typo.Richard Smith2012-05-151-1/+1
* If we see a declaration which is either missing a type or has a malformed type,Richard Smith2012-05-151-1/+4
* Don't use the implicit int rule for error recovery in C++. Instead, try toRichard Smith2012-05-151-5/+54
* Push the knowledge that we are parsing a type-id/type-name further into theRichard Smith2012-05-091-2/+5
* Stop AltiVec parsing from going down the 'implicit int' codepath as part of itsRichard Smith2012-05-091-1/+6
* Change how we suppress access control in explicit instantiationsJohn McCall2012-05-071-24/+36
* Refactor DelayedDiagnostics so that it keeps diagnostics inJohn McCall2012-05-071-2/+2
* Revert most of r154844, which was disabled in r155975. Keep around theRichard Smith2012-05-021-19/+3
* Disable our non-standard delayed parsing of exception specifications. DelayingRichard Smith2012-05-021-0/+6
* switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. ...Chris Lattner2012-04-281-4/+3
* Imrpove the note text for when a non-type decl hides a tag typeKaelyn Uhrain2012-04-271-1/+1
* Add note to help explain why a tag such as 'struct' is needed to referKaelyn Uhrain2012-04-261-2/+14
* Don't try to delay parsing the exception specification for a data member of aRichard Smith2012-04-241-0/+2
* Implement the last part of C++ [class.mem]p2, delaying the parsing ofDouglas Gregor2012-04-161-5/+12
* Implement C++11 [expr.prim.general]p3, which permits the use of 'this'Douglas Gregor2012-04-161-6/+28
* Delete late parsed attributes instead of leaking them.Benjamin Kramer2012-04-141-0/+1
* Add an AttributedStmt type to represent a statement with C++11 attributesRichard Smith2012-04-141-1/+1
* Part of PR10101: after a parse error in a declaration, try harder to find theRichard Smith2012-04-111-4/+62
* Support C++11 attributes at the start of a parameter-declaration.Richard Smith2012-04-111-10/+15
* Fix GCC's pedantic return-type warning -- this enum is fully covered.Chandler Carruth2012-04-101-0/+1
* Parsing of C++11 attributes:Richard Smith2012-04-101-3/+3
* Disambiguation of '[[':Richard Smith2012-04-101-36/+83
* Fixed scoping error for late parsed attributes in nested classes.DeLesley Hutchins2012-04-061-0/+9
* For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this isRichard Smith2012-04-041-4/+12
* Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-caseRichard Smith2012-03-291-11/+52
* If we see '(...' where we're expecting an abstract-declarator, that doesn'tRichard Smith2012-03-271-4/+7
* Add cross-referencing comments to ParseDirectDeclarator to note thatRichard Smith2012-03-271-2/+6
* When we see 'Class(X' or 'Class::Class(X' and we suspect that it names aRichard Smith2012-03-271-1/+36
* Support for definitions of member enumerations of class templates outside theRichard Smith2012-03-231-23/+48
* Add the missing compatibility warning for braced initializers as default argu...Sebastian Redl2012-03-181-2/+3
* Small cleanup: move trailing-return-type special-casing intoRichard Smith2012-03-151-3/+3
OpenPOWER on IntegriCloud