aboutsummaryrefslogtreecommitdiff
path: root/test/Parser
AgeCommit message (Expand)Author
2013-05-04Properly parsing __declspec(safebuffers), though there is no semantic hookup....Aaron Ballman
2013-04-24Objective-C parsing [qoi]: Recover gracefully with good diagnosticFariborz Jahanian
2013-04-21The 'constexpr implies const' rule for non-static member functions is gone inRichard Smith
2013-04-18Objective-C++: Enable passing of modern C++11 style Fariborz Jahanian
2013-04-18Objective-C parsing [qoi]: Provide good recovery whenFariborz Jahanian
2013-04-18[Parser] Handle #pragma pack/align inside C structs.Argyrios Kyrtzidis
2013-04-16Parser support for #pragma clang __debug capturedTareq A. Siraj
2013-04-16Basic support for Microsoft property declarations andJohn McCall
2013-04-13Give this test a triple so that its use of thread_local doesn't make it fail ...Richard Smith
2013-04-12Parsing support for thread_local and _Thread_local. We give them the sameRichard Smith
2013-04-04Make the ObjC attributes diagnostics a bit more informative.Nico Weber
2013-04-03Emit a nicer diagnostic for misplaced attributes on ObjC directives.Nico Weber
2013-03-28Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar...Richard Smith
2013-03-25Try harder to be signal-safe inside our signal handler. The most prominent be...Nick Lewycky
2013-03-20Do the error recovery for @end only.Fariborz Jahanian
2013-03-20Objective-C [qoi] more gracefull recovery when Fariborz Jahanian
2013-03-20Teach statement / declaration disambiguation about C++11-style generalized in...Richard Smith
2013-03-19Objective-C [qoi]: Provide improved parse diagnostics whenFariborz Jahanian
2013-03-18Add missing diagnostic for a nested-name-specifier on a free-standing type de...Richard Smith
2013-03-05Add quotation marks to template names in diagnostics.David Blaikie
2013-02-28Fix warning text of my last patch.Fariborz Jahanian
2013-02-28objective-C: clang, following gcc, warns onFariborz Jahanian
2013-02-22[Sema] Semantic analysis for empty-declaration and attribute-declaration.Michael Han
2013-02-22Don't accidentally and silently accept C++11 attributes in decl-specifier-seqsRichard Smith
2013-02-22Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributesRichard Smith
2013-02-22Don't skip '_Alignas' when disambiguating 'final'. '_Alignas' can't appear here,Richard Smith
2013-02-22Add -fbracket-depth=N, analogous to -ftemplate-depth= and -fconstexpr-depth=,Richard Smith
2013-02-20PR15311: Finish implementation of the suggested resolution of core issue 1488,Richard Smith
2013-02-20Process and handle attributes on conditions and for loop variables. Process andRichard Smith
2013-02-19PR15300: Support C++11 attributes on base-specifiers. We don't support any suchRichard Smith
2013-02-02PR15132: Replace "address expression must be an lvalue or a functionRichard Smith
2013-01-29Downgrade 'attribute ignored when parsing type' from error to warning, to matchRichard Smith
2013-01-29Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas.Richard Smith
2013-01-29PR15017: A '>' can appear after a type-specifier in a template-argument-list.Richard Smith
2013-01-29Treat alignas and _Alignas as keyword attributes. This allows us toRichard Smith
2013-01-26Give a more informative error message when the dot or arrow operator is usedRichard Trieu
2013-01-25Temporarily disabling ms-asm testRenato Golin
2013-01-24Fail these tests in a way that doesn't cause unexpected successes, per Daniel'sChad Rosier
2013-01-22Add a triple, per Ben's suggestion.Chad Rosier
2013-01-22Second attempt to fix ppc bots.Chad Rosier
2013-01-22Add x86 requirement to hopefully fix ppc bots.Chad Rosier
2013-01-22[ms-inline asm] Remove a warning about ms-style inline assembly not beingChad Rosier
2013-01-19Fix five more cases of tokens which can legally follow a type specifier.Richard Smith
2013-01-18Fix parsing of class specifiers before '\n' 'operator'.Nico Weber
2013-01-17Parsing support for C11's _Noreturn keyword. No semantics yet.Richard Smith
2013-01-17Implement C++11 semantics for [[noreturn]] attribute. This required splittingRichard Smith
2013-01-15Add a test for -Wsemicolon-before-method-body fixitDmitri Gribenko
2013-01-15PR14918: Don't confuse braced-init-lists after template variable declarationsRichard Smith
2013-01-15Fix behavior of [[gnu::]] function attributes. Per g++'s behavior, theseRichard Smith
2013-01-14Accept [[gnu::*]] for all __attribute__((*))s which are:Richard Smith