summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/Parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make Declarator::getDeclSpec() return a const reference to avoidChris Lattner2008-06-261-1/+1
| | | | | | cases where mutation can introduce bugs. Propagate around 'const'. llvm-svn: 52772
* Add parsing support for C++ classes.Argyrios Kyrtzidis2008-06-241-0/+2
| | | | | | | Note that Parser::ParseCXXMemberSpecification is temporarily disabled until the Sema support is in place. Once ParseCXXMemberSpecification is enabled, the Parser/cxx-class.cpp test will pass. llvm-svn: 52694
* K&R-style functions not allowed in C++.Argyrios Kyrtzidis2008-06-211-2/+3
| | | | llvm-svn: 52575
* Test commit to see if new account works.Mike Stump2008-06-191-60/+60
| | | | | | | I choose to remove extraneous whitespace at end of lines as a semantic nop for the test. llvm-svn: 52503
* Fix a couple crashes on invalid input.Chris Lattner2008-05-271-1/+2
| | | | llvm-svn: 51622
* Fix the scope of K&R-style argument declarations so that they don't Eli Friedman2008-05-201-1/+1
| | | | | | | | | extend beyond the end of the function. I'm not completely sure this is the right way to fix this bug, so someone familiar with the parser should double-check. llvm-svn: 51311
* Add support for C++ default arguments, and rework Parse-Sema Chris Lattner2008-04-081-5/+12
| | | | | | | | interaction for function parameters, fixing PR2046. Patch by Doug Gregor! llvm-svn: 49369
* Fix handling of implicit int, resolving PR2012 and reverting (andChris Lattner2008-04-051-1/+1
| | | | | | subsuming) my patch for PR1999. llvm-svn: 49251
* Step #1 to fixing PR2012: c89 allows declspecs to be completely Chris Lattner2008-04-051-4/+17
| | | | | | | missing from function definitions only. If we see a function definiton with missing declspecs, just fudge in an int. llvm-svn: 49250
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+647
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
OpenPOWER on IntegriCloud