summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/RValues.cpp
Commit message (Collapse)AuthorAgeFilesLines
* adjust to changes in various APIs from LLVM. We can't printChris Lattner2008-08-231-3/+4
| | | | | | | | an APInt directly to an ostream now, so add some hacks. It would be better to switch all of the bugreport (and friends) stuff over to raw_ostream. llvm-svn: 55264
* various updates to match r54873 on mainline.Chris Lattner2008-08-171-4/+3
| | | | llvm-svn: 54874
* More #include cleaningDaniel Dunbar2008-08-111-0/+1
| | | | | | | | - Drop {Decl.h,DeclObjC.h,IdentifierTable.h} from Expr.h - Moved Sema::getCurMethodDecl() out of line (dependent on ObjCMethodDecl via dyn_cast). llvm-svn: 54629
* Fix 80 col violationTed Kremenek2008-07-181-5/+5
| | | | llvm-svn: 53754
* Fix regression by explicitly checking if we are negating a SymIntConstantVal.Ted Kremenek2008-07-181-0/+14
| | | | llvm-svn: 53753
* More cleanups with ObjCQualifiedIdType in the static analyzer.Ted Kremenek2008-04-301-1/+2
| | | | llvm-svn: 50503
* Add lval::ArrayOffset, which represent the locations of entries in an array.Ted Kremenek2008-04-291-0/+9
| | | | llvm-svn: 50453
* Added lval::FieldOffset, which represents symbolic lvalues for field offsets ↵Ted Kremenek2008-04-291-1/+14
| | | | | | | | from other Lvalues. This removes the failure in null-deref-ps.c (test suite). llvm-svn: 50449
* Added lval type (and tracking) for StringLiterals.Ted Kremenek2008-04-221-0/+10
| | | | llvm-svn: 50109
* Added "nonlval::LValAsInteger" to represent abstract LVals casted to ↵Ted Kremenek2008-04-221-1/+12
| | | | | | integers, allowing us to track lvals when they are casted back to pointers. llvm-svn: 50108
* simplify some code by using PointerLikeType.Chris Lattner2008-04-021-3/+2
| | | | llvm-svn: 49101
* Make a major restructuring of the clang tree: introduce a top-levelChris Lattner2008-03-151-0/+389
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