aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaStmt.cpp
AgeCommit message (Expand)Author
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
2010-06-16Introduce Type::isIntegralOrEnumerationType(), to cover those placesDouglas Gregor
2010-06-12When deciding whether an expression has the boolean nature, don't look throughJohn McCall
2010-05-18If a switch condition is constant, don't warn about missing enum cases.John McCall
2010-05-15Substantially alter the design of the Objective C type AST by introducingJohn McCall
2010-05-15Implement a simple form of the C++ named return value optimization forDouglas Gregor
2010-05-15Implement semantic analysis and an AST representation for the namedDouglas Gregor
2010-05-15Recognize when the named return value optimization applies in aDouglas Gregor
2010-05-06Fixed DISABLE_SMART_POINTERS breakageDouglas Gregor
2010-05-06Rework our handling of temporary objects within the conditions ofDouglas Gregor
2010-04-26Refactor Objective-C @catch parameter checking by detangling it fromDouglas Gregor
2010-04-23Improve the AST representation of Objective-C @try/@catch/@finallyDouglas Gregor
2010-04-23Implement PR6845. We allow matching constraints to have differentChris Lattner
2010-04-22Template instantiation for the Objective-C "fast enumeration"Douglas Gregor