aboutsummaryrefslogtreecommitdiff
path: root/test/Parser
AgeCommit message (Expand)Author
2009-11-17Don't #include <stdio.h> when tests don't need it, or use clang instead of cl...Daniel Dunbar
2009-11-14Fix broken tests, exposed by improved -verify.Daniel Dunbar
2009-11-08Remove RUN: true lines.Daniel Dunbar
2009-11-08Eliminate &&s in tests.Daniel Dunbar
2009-11-06Make fragile-abi test run happy.Fariborz Jahanian
2009-11-06Fix a bogus objective-c warning with -pedantic.Fariborz Jahanian
2009-11-05Implement -Wsign-compare, or at least the actual comparison part of it.John McCall
2009-10-30Improve diagnostics when parsing something likeDouglas Gregor
2009-10-27Disabling some MS extensions which cause these tests to failJohn Thompson
2009-10-23Diagnose misuse of '.*' and '->*' operators during parseFariborz Jahanian
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