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