index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Sema
/
SemaTemplateInstantiateStmt.cpp
Age
Commit message (
Expand
)
Author
2009-08-20
Refactor the instantiation of statements into a generic tree
Douglas Gregor
2009-08-19
Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interf...
Argyrios Kyrtzidis
2009-08-18
Change ActOnReturnStmt to not take a FullExprArg. Instead, Sema will wrap the...
Anders Carlsson
2009-08-08
Get rid of Stmt::Clone now that we can reference count statements instead.
Anders Carlsson
2009-06-22
Rework the way we track which declarations are "used" during
Douglas Gregor
2009-06-12
add the location of the ')' in a do/while statement to DoStmt.
Chris Lattner
2009-06-04
Make sure to call FullExpr before parsing anything else.
Anders Carlsson
2009-05-30
ActOnReturnStmt should also take a FullExprArg.
Anders Carlsson
2009-05-29
Reduce the amount of stack space we use in SmallVectors during
Douglas Gregor
2009-05-27
Reimplement much of the way that we track nested classes in the
Douglas Gregor
2009-05-21
Merge the ASTVector and ASTOwningVector templates, since they offered
Douglas Gregor
2009-05-20
Fix template instantiation for compound statements so that it properly
Douglas Gregor
2009-05-20
Introduce a new kind of RAII class, ASTOwningVector, which is an
Douglas Gregor
2009-05-18
Template instantiation for C++ try/catch statements.
Douglas Gregor
2009-05-18
Include StmtNodes.def to declare Visit methods for all of the known
Douglas Gregor
2009-05-17
Make ActOnWhileStmt take a FullExprArg for the condition expr.
Anders Carlsson
2009-05-17
Fix DISABLE_SMART_POINTERS build.
Anders Carlsson
2009-05-17
Add the FullExprArg wrapper and use it for if statement conditions.
Anders Carlsson
2009-05-16
Reflow some comments.
Mike Stump
2009-05-16
Template instantiation for IndirectGotoStmt. Now my life is complete.
Douglas Gregor
2009-05-15
Template instantiation for switch statements
Douglas Gregor
2009-05-15
Template instantiation for break and continue statements.
Douglas Gregor
2009-05-15
Template instantiation for "for" loops
Douglas Gregor
2009-05-15
Template instantiation for do-while statements.
Douglas Gregor
2009-05-15
Template instantiation for WhileStmt and CXXConditionDeclExpr.
Douglas Gregor
2009-05-15
Allow instantiation of NULL expressions and statements
Douglas Gregor
2009-05-15
I take it back, InstantiateExpr does not check for null.
Anders Carlsson
2009-05-15
No need to null check the expr, Sema::SemaRef.InstantiateExpr handles all that.
Anders Carlsson
2009-05-15
Template instantiation for "if" statements. Also:
Douglas Gregor
2009-05-15
Move statement instantiation into its own file. No functionality change
Douglas Gregor