- c4e4acb Add missing break statement. by Ted Kremenek · 15 years ago
- 8fad994 Update comments. by Mike Stump · 15 years ago
- bb97722 Fix regression in attribute 'nonnull' checking when a transition node by Ted Kremenek · 15 years ago
- b2fafd4 Add a field for C++ specific data to ASTRecordLayout. Use it to store the non-virtual size and alignment + base offsets. by Anders Carlsson · 15 years ago
- efadb77 Bounds checking for address spaces. by John McCall · 15 years ago
- 7a1bcdf Reimplement QualifierSet using a single word, as requested by dgregor. by John McCall · 15 years ago
- e7f9d30 Implement ObjCMethodDecl::getCanonicalDecl(). by Argyrios Kyrtzidis · 15 years ago
- 4292073 -Add ObjCCategoryImplDecl::getCategoryClass() which returns the category interface decl. by Argyrios Kyrtzidis · 15 years ago
- 782fa30 Make longjmp a real builtin. by Mike Stump · 15 years ago
- 0cfeb63 Allow functions to be marked "implicit return zero" and so mark main(). by John McCall · 15 years ago
- 41ef0c3 Add a Profile function for statements so that we can (eventually) determine by Douglas Gregor · 15 years ago
- 523a8fd Make sure to move the comment with the code. by Mike Stump · 15 years ago
- f755606 (1) Enable PlistDiagnostics to take an option "PathDiagnosticClientFactory" by Ted Kremenek · 15 years ago
- bc0a222 Update for LLVM API change. by Owen Anderson · 15 years ago
- 0feecbb Add noreturn for exit. by Mike Stump · 15 years ago
- aecae62 Make ObjCImplDecl inherit from ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
- 550b732 Fix typo in error message by Douglas Gregor · 15 years ago
- 478fbc6 PR3575 - warn on declared variable or function attributes after a definition, which are currently ignored. by Ryan Flynn · 15 years ago
- 16f06bb Refactor ObjCImplDecl::getInstanceMethod/getClassMethod into one by Argyrios Kyrtzidis · 15 years ago
- aa5420c Refactor ObjCInterfaceDecl::lookupInstanceMethod/lookupClassMethod into one by Argyrios Kyrtzidis · 15 years ago
- 094e2bb Refactor ObjCProtocolDecl::lookupInstanceMethod/lookupClassMethod into one by Argyrios Kyrtzidis · 15 years ago
- 467c0b1 Refactor ObjCContainerDecl::getInstanceMethod/getClassMethod into one by Argyrios Kyrtzidis · 15 years ago
- ae92140 Improve comments (Thanks Fariborz). by Mike Stump · 15 years ago
- 2455636 Add noreturn as a type attribute, handle printing for them and handle by Mike Stump · 15 years ago
- 9cc11e7 Implement C++ semantics for C-style and functional-style casts. This regresses Clang extension conversions, like vectors, but allows conversions via constructors and conversion operators. by Sebastian Redl · 15 years ago
- 13591ed Semantic checking for main(). by John McCall · 15 years ago
- 8fceb57 Flesh out the QualifierSet API. by John McCall · 15 years ago
- 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 15 years ago
- 7252f51 More Sema check for constructor's member initializer along by Fariborz Jahanian · 15 years ago
- 50b8eea More work toward initialization of objects in constructors. by Fariborz Jahanian · 15 years ago
- f242b1b Allow front-end 'isa' access on object's of type 'id'. by Steve Naroff · 15 years ago
- e3e643f Add getDecl() to CallGraph and CallGraphNode. by Zhongxing Xu · 15 years ago
- 6d8f56f Constify methods. by Zhongxing Xu · 15 years ago
- 5f28a1e Implement new warning for functions declared 'noreturn' when they fall off the end. by Mike Stump · 15 years ago
- 3111218 Mark destructor of Checker virtual. by Ted Kremenek · 15 years ago
- 5e03f9e This patch fixes the implementations of the __has_trivial_destructor by Douglas Gregor · 15 years ago
- 87595e4 Diagnose when base classes and members to be intialized by Fariborz Jahanian · 15 years ago
- bd1099e Clean up the ActOnTag action, so that there is only a single entry by Douglas Gregor · 15 years ago
- 56a5d80 Add two nodes to the call graph: by Zhongxing Xu · 15 years ago
- 16a705f Add template specializations to view the call graph in dot format. by Zhongxing Xu · 15 years ago
- f785643 constify methods. by Zhongxing Xu · 15 years ago
- b85bca2 Add getter methods. by Zhongxing Xu · 15 years ago
- 25c155a Add newline at EOF. by Daniel Dunbar · 15 years ago
- 3629255 Revert r76831, there are many Analyzer test failures on multiple platforms. by Daniel Dunbar · 15 years ago
- dbfb5f8 Add initial implementation of checking for uses of floating point as a loop counter. by Ted Kremenek · 15 years ago
- a4e7056 Add instance predicate method to match static method. by Ted Kremenek · 15 years ago
- 7a2d953 Add 'previsit' Checker pass for ObjCMessageExprs. by Ted Kremenek · 15 years ago
- 4084c30 Remove a bunch of FIXME's related to ObjC type checking. by Steve Naroff · 15 years ago
- d7b27e1 Add constructor used to initialize base/member in by Fariborz Jahanian · 15 years ago
- b1682c5 Add warning for falling off the end of a function that should return a by Mike Stump · 15 years ago
- 7cdbc58 Implement support for out-of-line definitions of the class members of class by Douglas Gregor · 15 years ago
- ba1e898 Change Preprocessor to keep a copy of LangOptions instead of reference, like ASTContext. by Argyrios Kyrtzidis · 15 years ago
- 5f85e17 Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'. by Ted Kremenek · 15 years ago
- 6621bcf Use SaveAndRestore in 'clang/Analysis/Support/SaveAndRestore.h' by Ted Kremenek · 15 years ago
- 67afec1 Add AssumeDual method. by Ted Kremenek · 15 years ago
- d33133c Fix the parsing of default arguments for inline member function definitions. by Eli Friedman · 15 years ago
- bd04878 Make 'SaveAndRestore' and friends reusable classes in libAnalysis. by Ted Kremenek · 15 years ago
- 5a5d98b Add support for registering 'Checker' objects with GRExprEngine. by Ted Kremenek · 15 years ago
- 29e543c Add new 'Checker' and 'CheckerVisitor' classes, which represent a more powerful by Ted Kremenek · 15 years ago
- e01ac57 Add support for 'PreStmt' program points to GRCoreEngine and GRStmtNodeBuilder. by Ted Kremenek · 15 years ago
- cdd4f17 Add 'PreStmt' program point. This will be used to represent checking for by Ted Kremenek · 15 years ago
- cc2c6eb Implement operator= for ExplodedNodeSet. by Ted Kremenek · 15 years ago
- cd0c073 Make -Wreturn-type be part of -Wmost and therefore -Wall. by Mike Stump · 15 years ago
- 1f2023a "This patch implements the restrictions on union members detailed in by Douglas Gregor · 15 years ago
- 5350066 Move bug reporter "visitors" to their own file and make them part of the public by Ted Kremenek · 15 years ago
- dfe3f2d Implement parsing and semantic analysis for out-of-line definitions of static by Douglas Gregor · 15 years ago
- 0c8c536 Add some documentation, to make it so the next person doens't select by Mike Stump · 15 years ago
- 470301b Fix <rdar://problem/6770276> Support Class<Proto> syntax. by Steve Naroff · 15 years ago
- d6b9e37 Restructure ProgramPoint to have the 'Kind' value be its own instance by Ted Kremenek · 15 years ago
- cf18312 Minor mod. per Doug's comment. by Fariborz Jahanian · 15 years ago
- 7551c18 Complain if we're entering the context of a dependent nested-name-specifier but by Douglas Gregor · 15 years ago
- f59a56e Basic parsing and semantic analysis for out-of-line definitions of the by Douglas Gregor · 15 years ago
- 393612e Patch to accomodate Doug's comment on default by Fariborz Jahanian · 15 years ago
- e38158d Update stale comment. by Ted Kremenek · 15 years ago
- 32c3fa4 Fix PR 4594 by refactoring almost all casting logic from GRExprEngine::VisitCast by Ted Kremenek · 15 years ago
- 7930072 driver: Print --version on stdout, to match gcc. - Patch by Jean-Daniel Dupas by Daniel Dunbar · 15 years ago
- 3fdbed5 Make Sema::ActOnCXXEnterDeclaratorScope robust against failures to compute by Douglas Gregor · 15 years ago
- c19f959 Diagnose when a destructor uses a unrelated class type as its name. by Fariborz Jahanian · 15 years ago
- 741dd9a Add the location of the tag keyword into TagDecl. From Enea by Douglas Gregor · 15 years ago
- 4c7c5a1 Remove the ASTContext parameter from Entity::getPrintableName(). by Argyrios Kyrtzidis · 15 years ago
- 2bcb343 Add an assert for safety check. by Argyrios Kyrtzidis · 15 years ago
- f37006b Fix a crash that occurs in this C++ case: by Argyrios Kyrtzidis · 15 years ago
- 1f71727 Keep only canonical Decls in Entities. by Argyrios Kyrtzidis · 15 years ago
- f7cf15c Change the semantics for Entity. by Argyrios Kyrtzidis · 15 years ago
- 57ea6be Implement the virtual getNextRedeclaration() for ObjCMethodDecl. by Argyrios Kyrtzidis · 15 years ago
- 22cbd2b Add an assertion for the return value of Decl::getNextRedeclaration(). by Argyrios Kyrtzidis · 15 years ago
- 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 15 years ago
- 8a1d722 - Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplementation() which use a DenseMap to associate by Argyrios Kyrtzidis · 15 years ago
- e5af3ce Add yet more analysis for CFGs involving conditionals that are actually constant. by Mike Stump · 15 years ago
- 76ed9cb Improve message for bad destructor decl. Per Doug's comment. by Fariborz Jahanian · 15 years ago
- 75f1af0 Reuse VarDecl::Init to store the default argument of a ParmVarDecl, by Douglas Gregor · 15 years ago
- 02f43e7 Remove an apparently unused forward class decl. by Mike Stump · 15 years ago
- 0b5a07d Update DataflowSolver to handle the case where a successor/predecessor block by Ted Kremenek · 15 years ago
- ec8b59f Improve GCC compatibility by allowing static tentative definitions of by Douglas Gregor · 15 years ago
- 5200354 Enhance GRBranchNodeBuilderImpl (part of GRCoreEngine) to understand the case by Ted Kremenek · 15 years ago
- d33c868 Issue a more descriptive diagnostics when mis-declaring a destructor. by Fariborz Jahanian · 15 years ago
- bcfe03a Improve debug pretty-printing for ObjCIVarRegions. by Ted Kremenek · 15 years ago
- be6d259 enhance the goto checker to reject jumps across __block variable definitions. by Chris Lattner · 15 years ago
- 243a685 Rename NextOffset to DataSize, which better matches the Itanium C++ ABI by Anders Carlsson · 15 years ago
- 29445a0 Migrate over to the record layout builder. by Anders Carlsson · 15 years ago