- 211f6ad Assume statement expressions have side effects; this gets rid of a lot by Eli Friedman · 17 years ago
- 2742496 Don't swap function decls, and add them to the scope as they are by Eli Friedman · 17 years ago
- b26153c Stop leaking the TUDecl. by Eli Friedman · 17 years ago
- 0613c37 Always initialize NEXT_CATCH; fixes a Valgrind uninitialized read error by Eli Friedman · 17 years ago
- ebf27b1 Call the correct destructor. by Ted Kremenek · 17 years ago
- 218543b Minor tweak to -ast-dump for ivars. by Steve Naroff · 17 years ago
- 466c2e3 Tweak AST dumper for ObjC ivars. by Steve Naroff · 17 years ago
- 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 17 years ago
- e1b6d50 Remove the unneeded #include of VMCore header "llvm/DerivedTypes.h". by Dan Gohman · 17 years ago
- 4b05b1d Add Destroy method to Types, making there destruction more harmonious with by Ted Kremenek · 17 years ago
- 936ff13 Fix potential double-free. by Ted Kremenek · 17 years ago
- 6cc1896 Fixup ASTContext::PrintStats()...it was causing several test failures. by Steve Naroff · 17 years ago
- 8e355f2 When destroying DeclStmts, also destroy the associated Decl (reclaim its memory). by Ted Kremenek · 17 years ago
- 5f1adf8 Fix the destruction "properly" in the sense that we actually destroy the by Eli Friedman · 17 years ago
- b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 17 years ago
- 1108e7d Don't kill the declarations if the translation unit doesn't own them by Eli Friedman · 17 years ago
- 4210802 Remove hacks from ASTContext now that alignment gets reported correctly. by Eli Friedman · 17 years ago
- d1ac17a Reclaim memory from chains of ScopedDecls, and reclaim memory for the initializers of EnumConstantDecls. by Ted Kremenek · 17 years ago
- f809e3b Delete AST nodes, not just Decls. by Ted Kremenek · 17 years ago
- b65cf41 Reclaim memory allocated for ParmVarDecl's in FunctionDecl::Destroy. by Ted Kremenek · 17 years ago
- 3bbc198 When serializing FunctionDecl, serialize out a reference to the previous declaration. by Ted Kremenek · 17 years ago
- 75a13a5 Remove unnecessary #include (introduced by a recent patch of mine). by Ted Kremenek · 17 years ago
- 27f8a28 Try to plug some memory leaks... by Ted Kremenek · 17 years ago
- 9c1863e Added Stmt::DestroyChildren, which will be used by the dstors of the subclasses of Stmt to recursively delete their child AST nodes. by Ted Kremenek · 17 years ago
- 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 17 years ago
- 9c2535a Added CFGBlock::hasBinaryBranchTerminator(). by Ted Kremenek · 17 years ago
- 861dc46 Minor cleanup to isBuiltinConstantExpr. by Eli Friedman · 17 years ago
- 774e4af Removed bogus "return true" in Expr::isConstantExpr that returned true for all by Ted Kremenek · 17 years ago
- d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 17 years ago
- 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 17 years ago
- adbb619 Unbreak build. by Ted Kremenek · 17 years ago
- 81edea8 Grammar cleanup in comment. Remove redundant assignment. by Ted Kremenek · 17 years ago
- 9f3e89a When reading in the DeclCtx during deserialization, register the DeclCtx of the by Ted Kremenek · 17 years ago
- 6b3502c fix free/delete mismatch problem in add/mergeProperties (found by valgrind) by Nuno Lopes · 17 years ago
- 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 17 years ago
- 4607034 Synthesized getter/setter method declarations need not have by Fariborz Jahanian · 17 years ago
- 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 17 years ago
- 1a42a25 Fixup InitListExpr::child_begin/end. Thanks to Ted for catching the regression. by Steve Naroff · 17 years ago
- 81e72e4 Fix off-by-one error. by Steve Naroff · 17 years ago
- 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 17 years ago
- a212c56 Simplify FunctionDecl::AddRedeclaration a bit by using std::swap. by Chris Lattner · 17 years ago
- aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
- 9226197 Fixed bug in ObjCIVarExpr: the child iterator now iterates over the Base expression. by Ted Kremenek · 17 years ago
- c29efd8 Bug fix in StmtPrinter to handle pretty-printing ObjCMessageExprs involving variadic methods (also did some cosmetic cleanups in the printing output). by Ted Kremenek · 17 years ago
- ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
- c5ae899 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 17 years ago
- 274f433 Bug fix in CFG::getBlockEdgeImpl(): Use a BumpPtrAllocator to allocate by Ted Kremenek · 17 years ago
- 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
- c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 17 years ago
- 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 17 years ago
- 9fdf9c6 "This patch renames by Chris Lattner · 17 years ago
- c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
- 559c0c4 Continuation of work on ObjC2's properties. by Fariborz Jahanian · 17 years ago
- f009795 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
- 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
- 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
- ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
- 61d4615 New AST class for property implementation declarations. by Fariborz Jahanian · 17 years ago
- d9a3c33 Fixed a comment. by Fariborz Jahanian · 17 years ago
- 411cdee Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 17 years ago
- 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
- 97b7f26 Remove uses of "Selector&" and "const Selector&", since Selector is just an by Ted Kremenek · 17 years ago
- 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
- 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
- 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
- 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 17 years ago
- 1b30cb2 Use static_cast<> instead of cast<> in Decl::Destroy(). Suggestion by Argiris by Sam Bishop · 17 years ago
- 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
- dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
- d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 17 years ago
- 1bb1963 Invoke destructors in Decl::Destroy(). by Sam Bishop · 17 years ago
- bb45c51 Stub out and start using a Decl::Destroy() method. by Sam Bishop · 17 years ago
- f3c63ae Use the ASTContext allocator when creating deserialized Decl objects. by Sam Bishop · 17 years ago
- 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
- 670aa9d Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows by Sam Bishop · 17 years ago
- 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
- e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
- 5426bf6 random whitespace fixes. by Chris Lattner · 17 years ago
- 8c7bbb5 fix a bug I introduced in my previous checkin. by Chris Lattner · 17 years ago
- acc9972 simplify array compatibility testing. by Chris Lattner · 17 years ago
- 8f8fc7b simplify reference handling. by Chris Lattner · 17 years ago
- 6ac46a4 move some code around, no other change. by Chris Lattner · 17 years ago
- 78eca28 simplify compatibility testing for tag types. by Chris Lattner · 17 years ago
- b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
- 1ee0700 Fix a really bad bug where type uniquing would merge a<x> with b<x> as the same by Chris Lattner · 17 years ago
- 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
- 3cc4c0c Remove a dead check for compatible builtin types by Chris Lattner · 17 years ago
- 6e26f5d futher simplify compatibility testing of objc interface types. by Chris Lattner · 17 years ago
- a36a61f ocuvector and vector should be compatible. Fix ASQual compatibility. by Chris Lattner · 17 years ago
- f3692dc Fix comment typo, do reference eval at the correct type. by Chris Lattner · 17 years ago
- f62f9cd simplify vector type compatibility testing. by Chris Lattner · 17 years ago
- eca7be6 move ObjCQualifiedIdTypesAreCompatible out of ASTContext into Sema. by Chris Lattner · 17 years ago
- 821a01b Replace an O(n^2) algorithm in areCompatObjCQualInterfaces with by Chris Lattner · 17 years ago
- 88cb27a move sorting of qualifying protocols from the parser into by Chris Lattner · 17 years ago
- 065f0d7 eliminate getReferencedProtocols from by Chris Lattner · 17 years ago
- 3b27546 make QualifiedInterfaceTypesAreCompatible a static function by Chris Lattner · 17 years ago
- 53efc25 This predicate is just a generic "issuperclass" predicate, move it to the by Chris Lattner · 17 years ago
- c4e4059 Simplify some objc compatibility testing, make interfaceTypesAreCompatible by Chris Lattner · 17 years ago
- 439dbad simplify the logic in ASTContext::objcTypesAreCompatible by Chris Lattner · 17 years ago
- 368eefa clean up some logic in objc type handling. Specifically, make it so that by Chris Lattner · 17 years ago