aboutsummaryrefslogtreecommitdiff
path: root/test/Parser
AgeCommit message (Expand)Author
2009-10-13test commitJohn Thompson
2009-10-08Improve checking for specializations of member classes of classDouglas Gregor
2009-09-26Rework the Parse-Sema interaction for friends to better support friendDouglas Gregor
2009-09-25WIP implementation of explicit instantiation of function templates,Douglas Gregor
2009-09-12Add RUN line.Daniel Dunbar
2009-09-12Add a test for PR3733.Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-24Improve top-level-semicolon test a bitDouglas Gregor
2009-08-24Top-level semicolons are allowed in C++0x. Fixes PR4755.Douglas Gregor
2009-08-06First pass at friend semantics.John McCall
2009-08-01Ok, ok, I give in. Fix tests for unused result warning.Daniel Dunbar
2009-07-30PR3679 - handle #pragma weakRyan Flynn
2009-07-25Implement C++ semantics for C-style and functional-style casts. This regresse...Sebastian Redl
2009-07-25Disable this test: cxx-using-declaration.cppDaniel Dunbar
2009-07-23Fix test case, which has a control-reaches-end-of-non-void warning that wasDaniel Dunbar
2009-07-22Implement support for out-of-line definitions of the class members of classDouglas Gregor
2009-07-22Implement parsing and semantic analysis for out-of-line definitions of staticDouglas Gregor
2009-07-22Prep for new warning.Mike Stump
2009-06-27Fix the parser error hanlding for __builtin_offsetof to actually print Eli Friedman
2009-06-25Improved semantic analysis and AST respresentation for functionDouglas Gregor
2009-06-24Fix a clang crash caused by incorrect user code.Fariborz Jahanian
2009-06-24Make sure that the template parameter lists get from the parser down to ActOn...Douglas Gregor
2009-06-20Parsing and AST support for using declarations, from John Thompson!Douglas Gregor
2009-06-17Diagnose class members that shadow a template parameter. FixesDouglas Gregor
2009-06-17Diagnose the use of attributes on namespace aliases, from Anis AhmadDouglas Gregor
2009-06-14change ParseStatementOrDeclaration to emit the 'missing ;' withChris Lattner
2009-06-05Update test to work with the limited Sema for #pragma weak.Eli Friedman
2009-06-05Test for parsing #pragma weak.Eli Friedman
2009-06-03Use "()" instead of "(void)" when pretty-printing a parameter-less function t...Argyrios Kyrtzidis
2009-05-25PR4122: Tweak the ambiguity handling to handle (S())() correctly. I've Eli Friedman
2009-05-22Add a test case to make sure that an ambiguous paren expression is only parse...Argyrios Kyrtzidis
2009-05-22Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b...Argyrios Kyrtzidis
2009-05-22Parse typeof-specifier the same way as sizeof/alignof are parsed.Argyrios Kyrtzidis
2009-05-16Make the RAII extension warning silencing for __extension__ a bit Eli Friedman
2009-05-16Fixup __extension__ i = 1 parsing. Thanks Eli!Mike Stump
2009-05-15Fixup parsing for (throw,throw) and __extension__ throw 1.Mike Stump
2009-05-12Refactor the parsing of declarations so that template declarations canDouglas Gregor
2009-05-11For friend class decls, always use TK_Reference so we'll try to look up exist...Anders Carlsson
2009-05-06Add parsing of friend specifiers.Anders Carlsson
2009-04-29Have the parser communicate the exception specification to the action.Sebastian Redl
2009-04-28Simplify the scheme used for keywords, and change the classification Eli Friedman
2009-04-26The mysterious bug turns out to be an incredibly bone-headed mistake.Sebastian Redl
2009-04-26Implement function-try-blocks. However, there's a very subtle bug that I can'...Sebastian Redl
2009-04-21implement semantic analysis for @synchronized, fixing a crash on invalidChris Lattner
2009-04-15Add warning when a tentative array definition is assumed to have one element.Daniel Dunbar
2009-04-13Improve error recovery for calls, fixing:Chris Lattner
2009-04-12Fix some C++ error recovery problems in init declarator parsingChris Lattner
2009-04-12fix another case that assumed that GetTypeForDeclarator would never return null.Chris Lattner
2009-04-12mark the declspec as invalid when we recover instead of forcing to int,Chris Lattner
2009-04-12Diagnose invalid uses of tagged types with a missing tag. For example, in:Chris Lattner