Age | Commit message (Expand) | Author |
2009-05-03 | Fix invalid error about duplicate declaration of padding bit field in | Daniel Dunbar |
2009-05-01 | Add Sema checking for __block on vm declarations. Radar 6441502 | Mike Stump |
2009-05-01 | Replace a bunch of static_cast + release with takeAs. | Anders Carlsson |
2009-05-01 | Finish a thought in CheckVariableDeclaration's comment. No functionality change | Douglas Gregor |
2009-04-30 | Rework the way we handle constructor decls to be less hacky and fix PR3948 co... | Anders Carlsson |
2009-04-30 | Make a home for exception specs in the AST. Now Sema can hook them up. | Sebastian Redl |
2009-04-30 | Sema checking for incorrect placement of __block. Radar 6441502 | Mike Stump |
2009-04-29 | Have the parser communicate the exception specification to the action. | Sebastian Redl |
2009-04-29 | Fix PR4092 by improving error recovery in two ways: | Chris Lattner |
2009-04-28 | Improve compatibility with GCC regarding inline semantics in GNU89 | Douglas Gregor |
2009-04-28 | Get rid of some useless uses of NoExtensions. The philosophy here is | Eli Friedman |
2009-04-27 | Track down return statements in the handlers of a function-try-block of const... | Sebastian Redl |
2009-04-27 | Change our silencing of C typedef redefinition handling to what we had | Chris Lattner |
2009-04-26 | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl |
2009-04-25 | improve a diagnostic to make more sense. | Chris Lattner |
2009-04-25 | with the fixes for better invalid decl/type propagation, this code | Chris Lattner |
2009-04-25 | Change SemaType's "GetTypeForDeclarator" and "ConvertDeclSpecToType" to | Chris Lattner |
2009-04-25 | change a couple more c++ sema methods to be based on isinvalid bits. | Chris Lattner |
2009-04-25 | various "is invalid" cleanups for C++ ctors/dtors. | Chris Lattner |
2009-04-25 | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner |
2009-04-25 | fix PR4049, a crash on invalid, by making sema install the right number of | Chris Lattner |
2009-04-25 | rename getNumParmVarDeclsFromType back to getNumParams(), | Chris Lattner |
2009-04-25 | in: | Chris Lattner |
2009-04-25 | set NewFD->setInvalidDecl() in one place, sharing code and ensuring that | Chris Lattner |
2009-04-24 | fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) | Chris Lattner |
2009-04-24 | Eliminate Sema::ObjCAliasDecls. This is based on Steve's fix, but also | Douglas Gregor |
2009-04-23 | PCH support for all of the predefined Objective-C types, such as id, | Douglas Gregor |
2009-04-23 | Fix handling of C99 "extern inline" semantics when dealing with | Douglas Gregor |
2009-04-23 | The ivars in an ObjCImplementationDecl are now stored in the | Douglas Gregor |
2009-04-22 | Eliminate Sema::KnownFunctionIDs, so that Sema doesn't end up pulling | Douglas Gregor |
2009-04-21 | Explictly track tentative definitions within Sema, then hand those | Douglas Gregor |
2009-04-20 | clean up anonymous bitfield diagnostics, PR4017 | Chris Lattner |
2009-04-19 | Print an error for uses of __thread on targets which don't support it. | Eli Friedman |
2009-04-19 | Add more thorough/correct checking for invalid __thread specifiers. | Eli Friedman |
2009-04-19 | add a new Sema::CurFunctionNeedsScopeChecking bool that is used to avoid | Chris Lattner |
2009-04-19 | move jump scope checking and related code out into its own file, SemaDecl.cpp is | Chris Lattner |
2009-04-19 | rewrite an O(N^2) algorithm to be O(n). | Chris Lattner |
2009-04-19 | second half of indirect jump checking: make sure that any | Chris Lattner |
2009-04-19 | First half of jump scope checking for indirect goto. | Chris Lattner |
2009-04-18 | reimplement DeclStmt handling so that we correctly handle intermixed | Chris Lattner |
2009-04-18 | the scope checker does work with objc methods, add testcase. | Chris Lattner |
2009-04-18 | I didn't understand how @catches were chained. Now that I get it, fix | Chris Lattner |
2009-04-18 | forgot to commit this before. | Chris Lattner |
2009-04-18 | reject invalid jumps among pieces of @try blocks. This seems to work | Chris Lattner |
2009-04-18 | unconditionally check for goto correctness. This is because switch | Chris Lattner |
2009-04-18 | fix two error paths out of ParseBlockLiteralExpression to | Chris Lattner |
2009-04-18 | refactor some code, adding a new getLabelMap() accessor method | Chris Lattner |
2009-04-18 | Improve switch diagnostic to emit the "jump" message on the | Chris Lattner |
2009-04-18 | first step to getting switches giving "jump into vla scope" errors. | Chris Lattner |
2009-04-18 | fix error recovery in the case of a jump to a label with no definition | Chris Lattner |