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
/
SemaStmt.cpp
Age
Commit message (
Expand
)
Author
2009-01-11
Convert some more actions to smart pointers.
Sebastian Redl
2008-12-31
Perform default function/array conversion for input arguments to inline asm s...
Anders Carlsson
2008-12-28
Convert a two more statement actions to smart pointers.
Sebastian Redl
2008-12-22
Full AST support and better Sema support for C++ try-catch.
Sebastian Redl
2008-12-22
Partial AST and Sema support for C++ try-catch.
Sebastian Redl
2008-12-21
Convert a few Stmt actions to smart pointers.
Sebastian Redl
2008-12-18
This is valid in C++.
Chris Lattner
2008-12-18
Merge function-return.c into function.c
Chris Lattner
2008-12-05
Introduce basic support for dependent types, type-dependent
Douglas Gregor
2008-12-04
change getCurFunctionDecl to skip through Block contexts to find
Chris Lattner
2008-12-01
Use VerifyIntegerConstantExpression for case values.
Anders Carlsson
2008-11-24
Change a whole lot of diagnostics to take QualType's directly
Chris Lattner
2008-11-23
Make all the 'redefinition' diagnostics more consistent, and make the
Chris Lattner
2008-11-23
Convert IdentifierInfo's to be printed the same as DeclarationNames
Chris Lattner
2008-11-22
Case values must be evaluated
Anders Carlsson
2008-11-22
Use Expr::Evaluate for case statements. Fixes PR2525
Anders Carlsson
2008-11-20
remove the last old-fashioned Diag method. Transition complete!
Chris Lattner
2008-11-20
remove another old-school Diag method.
Chris Lattner
2008-11-19
stop calling II::getName() unnecesarily in sema
Chris Lattner
2008-11-19
remove one more old-style Diag method.
Chris Lattner
2008-11-19
Switch several more Sema Diag methods over. This simplifies the
Chris Lattner
2008-10-29
Implement initialization of a reference (C++ [dcl.init.ref]) as part
Douglas Gregor
2008-10-07
Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDe...
Ted Kremenek
2008-10-06
When processing Objective-C foreach statements, first check to see if the sta...
Ted Kremenek
2008-10-06
Use the DeclStmt::decl_iterator to get the first decl in a DeclStmt instead o...
Ted Kremenek
2008-09-24
Fix <rdar://problem/6243788> clang: Incorrect return statement for Blocks?
Steve Naroff
2008-09-16
Sema::ActOnBlockReturnStmt(): Need to perform the UsualUnaryConversions on th...
Steve Naroff
2008-09-11
Do implicit conversion to bool for the condition in a do-while statement.
Argyrios Kyrtzidis
2008-09-10
Implement Sema support for the 'condition' part of C++ selection-statements a...
Argyrios Kyrtzidis
2008-09-03
Add semantic analysis for "blocks".
Steve Naroff
2008-08-25
Objective-C foreach selector elements must be lvalues.
Anders Carlsson
2008-08-18
Several cleanups and tweaks to diagnostics in Sema::ActOnAsmStmt,
Chris Lattner
2008-08-17
various updates to match r54873 on mainline.
Chris Lattner
2008-08-13
Update some isIntegerConstantExpr uses to use
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-08
Use DeclStmt::decl_iterator instead of walking the getNextDeclarator() chain.
Ted Kremenek
2008-07-26
convert more code to use ASTContext to get canonical types instead
Chris Lattner
2008-07-25
Fix rdar://6095136, various crashes with incomplete enum types.
Chris Lattner
2008-07-24
Move isObjCObjectPointerType() from Sema to ASTContext.
Ted Kremenek
2008-07-23
Fix rdar://6094010 various asserts happening with wide strings in inline asm.
Chris Lattner
2008-06-28
Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() a...
Argyrios Kyrtzidis
2008-04-15
Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVar...
Steve Naroff
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner