aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaStmt.cpp
AgeCommit message (Expand)Author
2011-01-05Refactor the application of type attributes so that attributes fromJohn McCall
2010-12-15Sundry missing lvalue-to-rvalue conversions. Also leave a TODO for the vitalJohn McCall
2010-12-15Variadic templates: extend the Expr class with a bit that specifiesDouglas Gregor
2010-12-10It's kindof silly that ExtQuals has an ASTContext&, and we can use thatJohn McCall
2010-12-07PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad
2010-12-06Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoreticalJohn McCall
2010-12-04Although we currently have explicit lvalue-to-rvalue conversions, they'reJohn McCall
2010-12-02Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope...John McCall
2010-11-24Switch a lot of call-sites over to using the new value-kind calculations.John McCall
2010-11-20Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan...Argyrios Kyrtzidis
2010-11-19Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g:Argyrios Kyrtzidis
2010-11-10Region-allocate all AttributeList objects from a factory object instead of ma...Ted Kremenek
2010-11-01Emit error when using a bound member function for something other than callin...Argyrios Kyrtzidis
2010-10-15Death to blocks, or at least the word "block" in one particular obnoxiouslyJohn McCall
2010-10-08Track the location of the context requiring an implicit conversion and use itJohn McCall
2010-10-01Factor out enumerator APSInt adjustment intoGabor Greif
2010-09-28Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848...Argyrios Kyrtzidis
2010-09-19Implement -Wunused-label.Argyrios Kyrtzidis
2010-09-19Warn when an expression result in a LabelStmt is unused.Argyrios Kyrtzidis
2010-09-16improve the "enumeration value 'g' not handled in switch"Chris Lattner
2010-09-16Do not warn about empty bodies for 'if' statements if the body is expanded fr...Ted Kremenek
2010-09-09Fix indentation.Ted Kremenek
2010-09-09Remove tabs I accidentally introduced.Ted Kremenek
2010-09-09When building SwitchStmts in Sema, record whether all the enum values of a sw...Ted Kremenek
2010-09-03"I see dead code". IdempotentOperationChecker::isTruncationExtensionAssignmentChris Lattner
2010-09-03Devirtualize Sema, kill off DeleteExpr and DeleteStmt, and reformat.John McCall
2010-08-25Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall
2010-08-25GCC didn't care for my attempt at API compatibility, so brute-force everythingJohn McCall
2010-08-25Split FunctionScopeInfo and BlockScopeInfo into their own header.John McCall
2010-08-24More header elimination. The goal of all this is to allow Parser toJohn McCall
2010-08-24OwningExprResult -> ExprResult. This patch brought to you byJohn McCall
2010-08-23Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*).John McCall
2010-08-21DeclPtrTy -> Decl *John McCall
2010-08-12Typo.Fariborz Jahanian
2010-08-12Patch to issue warning when colllection expresion's typeFariborz Jahanian
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor
2010-08-11IRGen support for functions returning objc objectFariborz Jahanian
2010-08-01Only run the jump-checker if there's a branch-protected scope *and* there'sJohn McCall
2010-07-26Fix namespace polution.Dan Gohman
2010-07-25Remove the vast majority of the Destroy methods from the AST library,Douglas Gregor
2010-07-15Make the "unused result" warning a warning about run-time behavior, soDouglas Gregor
2010-07-08Reinstate the fix for PR7556. A silly use of isTrivial() wasDouglas Gregor
2010-07-07Revert r107828 and r107827, the fix for PR7556, which seems to beDouglas Gregor
2010-07-07Do not use CXXZeroValueInitExpr for class types. Instead, useDouglas Gregor
2010-06-30Implement C++ DR299, which allows an implicit conversion from a classDouglas Gregor
2010-06-29Re-improve recovery when the condition of a switch statement does notDouglas Gregor
2010-06-29Factor the conversion from a switch condition to an integral orDouglas Gregor
2010-06-29With packed enums, an enumerator's value may be stored in more bitsDouglas Gregor
2010-06-22Type Type::isRealFloatingType() that vectors are not floating-pointDouglas Gregor
2010-06-21Alter the internal representation of the condition variable inDouglas Gregor