aboutsummaryrefslogtreecommitdiff
path: root/AST/Stmt.cpp
AgeCommit message (Expand)Author
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner
2008-02-05Handle simple asm statements correctly.Anders Carlsson
2008-02-01For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the ne...Ted Kremenek
2008-01-30move some constructors out of line and fix indentation in ObjCAtThrowStmt::ge...Chris Lattner
2008-01-29Rewriting of @synchronized. This has one FIXME in it. But this should allow @...Fariborz Jahanian
2008-01-29AST for @synchronized.Fariborz Jahanian
2008-01-07Substituted all instances of the string "Objc" for "ObjC". This fixesTed Kremenek
2008-01-02New declarations/defs for Objc2's foreach-statement. This is work in progress.Fariborz Jahanian
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-11-23Keep track of whether the asm is volatile or not.Anders Carlsson
2007-11-22Store output and input operands as well as clobber information in the AsmStmt...Anders Carlsson
2007-11-07Fixed an array overflow bug.Fariborz Jahanian
2007-11-07AST for objective-c's @throw statement and its pretty-printing.Fariborz Jahanian
2007-11-01AST build for @catch clause (this is work in progress).Fariborz Jahanian
2007-11-01Bunch of class declarations for objective-c's @try-catch statement.Fariborz Jahanian
2007-10-29Implement *skeletal* support for representing GNU inline asm stmts in the AST,Chris Lattner
2007-10-18Fixed DeclStmt::child_begin() to actually create an iterator thatTed Kremenek
2007-10-18Implemented 90% functionality of new child_iterator for Stmt objectsTed Kremenek
2007-10-07move IdentifierTable.h from liblex to libbasic.Chris Lattner
2007-10-01Removed "hasImplicitControlFlow" from class CFG, and moved it to class StmtTed Kremenek
2007-08-31Convert more statments over to SourceRanges...Steve Naroff
2007-08-30Fixed bug for CaseStmt where the child_begin/child_end methods were notTed Kremenek
2007-08-30elimiante some virtual calls.Chris Lattner
2007-08-27Fixed bug in child_begin/child_end for ReturnStmt where the iteratorTed Kremenek
2007-08-25fix off-by-one errorChris Lattner
2007-08-25rename sNames -> StmtClassInfo. Make lookups constant time.Chris Lattner
2007-08-24Added child_begin/child_end to all subclasses of Stmt in Stmt.h. All Ted Kremenek
2007-08-21Switch StmtVisitor from using dynamic to static dispatch. This makes it Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer