aboutsummaryrefslogtreecommitdiff
path: root/Sema/Sema.cpp
AgeCommit message (Expand)Author
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner
2008-03-15move the ASTContext argument to be first in the argument list of Chris Lattner
2008-03-15start switching decls over to using an allocator controlled by ASTContext. Chris Lattner
2008-02-24Move the initialization of SEL/objc_selector from Sema::Sema() to Sema::ActOn...Steve Naroff
2008-02-13avoid making implicit casts that just remove typedefs.Chris Lattner
2008-02-06pass the astconsumer into Sema's ctor, clean up some stuff in Chris Lattner
2008-01-16Move promoteExprToType from being a static method in SemaExpr.cpp to beingChris Lattner
2008-01-07Substituted all instances of the string "Objc" for "ObjC". This fixesTed Kremenek
2008-01-07Limit type of foreach's element and collection to be a pointer to Fariborz Jahanian
2008-01-04Patch to add semantics check for ObjC2's foreacn statement.Fariborz Jahanian
2008-01-03generalize some of the conversion warnings.Chris Lattner
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-12TargetInfo no longer includes a reference to SourceManager.Ted Kremenek
2007-12-11Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. NowTed Kremenek
2007-12-07Patch to implement "Protocol" as a built-in type declared asFariborz Jahanian
2007-11-30Initialize CurMethodDecl to 0.Anders Carlsson
2007-11-29Yesterday, I simplified how we stream top-level decls.Steve Naroff
2007-11-28Several fixes/simplifications surrounding how we stream top-level decl AST's.Steve Naroff
2007-10-31Implement a more sensible strategy for ObjC built-in types (addressing a long...Steve Naroff
2007-10-31Encode Class, SEL and Objective-C objects.Anders Carlsson
2007-10-30minor tweaksChris Lattner
2007-10-17Implementation of AST for @protocol expression.Fariborz Jahanian
2007-10-16Patch to implement AST generation for objective-c's @selector expression.Fariborz Jahanian
2007-10-15Added ASTContext::setObjcIdType/getObjcIdType(), set by Sema.Steve Naroff
2007-10-10Refinements to Sema::GetObjcIdType()...Steve Naroff
2007-10-10- Make sure default return/argument types (for methods) default to "id".Steve Naroff
2007-10-09Make sure methods with no return type default to "id".Steve Naroff
2007-08-31add actions for deleting expr/stmt nodes.Chris Lattner
2007-08-10Moved id_asprintf before id_vsnprintf in the enum used for indexingTed Kremenek
2007-08-10initial support for checking format strings, patch by Ted Kremenek:Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer