summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/StmtDumper.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* fix an extraneous blank line in -ast-dump output.Chris Lattner2008-07-261-1/+1
| | | | llvm-svn: 54097
* remove dead enums.Chris Lattner2008-06-211-2/+0
| | | | llvm-svn: 52581
* Switch 'super' from being a weird cast thing to being a predefined expr node.Chris Lattner2008-06-211-11/+7
| | | | | | Patch by David Chisnall with objc rewriter and stmtdumper updates from me. llvm-svn: 52580
* Dump the name of CXXStruct/CXXUnion/CXXClass Decl subclasses.Argyrios Kyrtzidis2008-06-091-0/+3
| | | | llvm-svn: 52161
* Fix ast dumping to work with long double literals, e.g. we dump:Chris Lattner2008-06-071-1/+1
| | | | | | | | | | | | | long double X() { return 1.0L; } as: long double X() (CompoundStmt 0xb06a00 <t.c:2:17, col:32> (ReturnStmt 0xb068d0 <col:19, col:26> (FloatingLiteral 0xb02cf0 <col:26> 'long double' 1.000000))) llvm-svn: 52080
* Minor tweak to -ast-dump for ivars.Steve Naroff2008-05-231-0/+2
| | | | llvm-svn: 51508
* Tweak AST dumper for ObjC ivars.Steve Naroff2008-05-231-3/+3
| | | | llvm-svn: 51463
* Use pointer swizziling to unify in ObjCMessageExpr the receiver and ↵Ted Kremenek2008-05-011-0/+2
| | | | | | | | classname "fields". This saves us a pointer. Implemented serialization for ObjCMessageExpr. llvm-svn: 50528
* OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris.Nate Begeman2008-04-181-2/+2
| | | | llvm-svn: 49942
* Remove uses of "Selector&" and "const Selector&", since Selector is just anTed Kremenek2008-04-161-1/+1
| | | | | | immutable smart pointer (we don't need to pass references, just pass Selector). llvm-svn: 49773
* Remove FileVarDecl and BlockVarDecl. They are replaced by ↵Steve Naroff2008-04-151-2/+1
| | | | | | | | VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). This is a fairly mechanical/large change. As a result, I avoided making any changes/simplifications that weren't directly related. I did break two Analysis tests. I also have a couple FIXME's in UninitializedValues.cpp. Ted, can you take a look? If the bug isn't obvious, I am happy to dig in and fix it (since I broke it). llvm-svn: 49748
* print cvr qualifiers on simplified typedefsChris Lattner2008-04-021-2/+5
| | | | llvm-svn: 49074
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+486
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