aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2010-07-07Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect itsDouglas Gregor
2010-07-07Do not use CXXZeroValueInitExpr for class types. Instead, useDouglas Gregor
2010-07-07Fix an issue with opencl init list checking.Nate Begeman
2010-07-07When printing statistics for the ASTContext, also print them for its BumpPtrA...Douglas Gregor
2010-07-07add driver support for minix, patch by Kees van ReeuwijkChris Lattner
2010-07-07Fix broken reading of NestedNameSpecifiers from PCH.Argyrios Kyrtzidis
2010-07-07Delay passing InterestingDecls to the Consumer until when we know we are not ...Argyrios Kyrtzidis
2010-07-07getBody() -> hasBody()Argyrios Kyrtzidis
2010-07-07Simplify code and remove comment that is no longer relevant.Argyrios Kyrtzidis
2010-07-07Remove Decl::getCompoundBody().Argyrios Kyrtzidis
2010-07-07Simplify code. CompoundStmt's RBraceLoc can be found using its SourceRange too.Argyrios Kyrtzidis
2010-07-07Simplify code. FunctionDecl and ObjCMethodDecl have some common interfaces.Argyrios Kyrtzidis
2010-07-07Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of...Argyrios Kyrtzidis
2010-07-07Add memcmp() and bcmp() to CStringChecker. These check for valid access to th...Jordy Rose
2010-07-07Cleanup on CStringChecker and its associated tests. Also check for null argum...Jordy Rose
2010-07-07Teach function-try-blocks on constructors and destructors to implicitlyJohn McCall
2010-07-07implement PR7569, warning about assignment to null, which Chris Lattner
2010-07-07Don't consider casted non-global pointers to be evaluatable.John McCall
2010-07-07Change explicit handling of impossible condition to call llvm_unreachable in ...Tom Care
2010-07-07Silence an annoying GCC warning about use of an uninitialized variable. EvenChandler Carruth
2010-07-07Use 'llvm_unreachable' to mark impossible code paths so that GCC doesn'tChandler Carruth
2010-07-06Provide a hook for the benefit of clients using clang IR gen as a subroutine:John McCall
2010-07-06Fix casts in RegionStore to not always assume that bindings are only to SubRe...Ted Kremenek
2010-07-06Implement dumpToStream() for NonStaticGlobalSpaceRegion and StaticGlobalSpace...Ted Kremenek
2010-07-06Add comment noting VLASizeChecker's duty in defining a VLA's extent.Jordy Rose
2010-07-06Add a new path-sensitive checker for functions in <string.h>, for both null-t...Jordy Rose
2010-07-06Sort CMake file.Ted Kremenek
2010-07-06Added a path-sensitive idempotent operation checker (-analyzer-idempotent-ope...Tom Care
2010-07-06Fix multiple emission of the this-> fixit for each instantiation by fixing theNick Lewycky
2010-07-06Make CGBuilderTy a typedef again; its functionality has been rolled backJohn McCall
2010-07-06Improve the accuracy of getSourceRange() for DeclaratorDecl andDouglas Gregor
2010-07-06Correctly set the location of the "template" keyword for a classDouglas Gregor
2010-07-06Remove my egregious hack that forced deserialization of visibleDouglas Gregor
2010-07-06Pacify versions of gcc that think these variables may be usedDuncan Sands
2010-07-06When destroying a cleanup, kill any references to instructions in the entryJohn McCall
2010-07-06Added several helper functions to Stmt to recursively check for different ele...Tom Care
2010-07-06Read/write function template specializations for PCH, properly this time.Argyrios Kyrtzidis
2010-07-06Add to PCH missing Sema information about VTable uses and dynamic classes.Argyrios Kyrtzidis
2010-07-06Allow a CXXRecordDecl to get a DefinitionData pointer even when its owner is ...Argyrios Kyrtzidis
2010-07-06Read/write instantiated-from-member of EnumDecl for PCH.Argyrios Kyrtzidis
2010-07-06Add an assertion.Zhongxing Xu
2010-07-06Collect function definitions in the Indexer when indexing through the ASTs.Zhongxing Xu
2010-07-06When creating functions to run global initializers and destructors, mark themJohn McCall
2010-07-06Remove the now-unused GRState::isEqual method. Instead of asking if an expres...Jordy Rose
2010-07-06Improve NULL-checking for CFRetain/CFRelease. We now remember that the argume...Jordy Rose
2010-07-06Validated by nightly-test runs on x86 and x86-64 darwin, including afterJohn McCall
2010-07-06Local variables have no linkage, make invalid Entities.Zhongxing Xu
2010-07-05Generate fewer first class aggregate values for otherChris Lattner
2010-07-05in the "coerce" case, the ABI handling code ends up making theChris Lattner
2010-07-05fix a bug I introduced in r107624Chris Lattner