summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/DeclSpec.cpp
Commit message (Collapse)AuthorAgeFilesLines
* This patch is just the easy part of the class names patch, whichChris Lattner2008-04-131-0/+1
| | | | | | | | | | | | | | | | allows the parsing of "class" in addition to "struct" and "union" to declare a record. So this patch allows: class C { }; class C c1; But it does not contain the lookup bits, so this won't work yet: C c2; Patch by Doug Gregor! llvm-svn: 49613
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+287
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