| Commit message (Expand) | Author | Age | Files | Lines |
* | Eliminate post-diagnostic hooks. Instead, implement a Sema-specific | Douglas Gregor | 2009-03-20 | 1 | -0/+16 |
* | Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revis... | Steve Naroff | 2009-03-13 | 1 | -2/+0 |
* | Add type checking for tentative definitions at the end of the | Douglas Gregor | 2009-03-10 | 1 | -0/+45 |
* | Fix <rdar://problem/6451399> problems with labels and blocks. | Steve Naroff | 2009-02-28 | 1 | -0/+2 |
* | replace a dirty hack with a clean solution. Too bad we can't | Chris Lattner | 2009-02-19 | 1 | -4/+12 |
* | Fix a long standard problem with clang retaining "too much" sugar | Chris Lattner | 2009-02-19 | 1 | -6/+29 |
* | Add hook to add attributes to function declarations that we know | Douglas Gregor | 2009-02-14 | 1 | -0/+1 |
* | Make it possible for builtins to expression FILE* arguments, so that | Douglas Gregor | 2009-02-14 | 1 | -2/+0 |
* | Extend builtin "attribute" syntax to include a notation for | Douglas Gregor | 2009-02-14 | 1 | -13/+2 |
* | Overhaul of Stmt allocation: | Ted Kremenek | 2009-02-07 | 1 | -1/+1 |
* | Implement semantic analysis for the GNU flexible array initialization | Douglas Gregor | 2009-02-04 | 1 | -4/+6 |
* | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor | 2009-02-04 | 1 | -2/+8 |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+0 |
* | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner | 2009-01-27 | 1 | -1/+1 |
* | inline Sema::getLangOptions, rdar://6515190. This speeds up | Chris Lattner | 2009-01-22 | 1 | -5/+2 |
* | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor | 2009-01-22 | 1 | -2/+2 |
* | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -4/+4 |
* | Vector codegen improvements | Nate Begeman | 2009-01-18 | 1 | -1/+1 |
* | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor | 2009-01-09 | 1 | -1/+1 |
* | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -1/+1 |
* | Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. | Sebastian Redl | 2008-12-22 | 1 | -2/+2 |
* | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -1/+1 |
* | change getCurFunctionDecl to skip through Block contexts to find | Chris Lattner | 2008-12-04 | 1 | -0/+20 |
* | Overload resolution for the operator new function. Member version is still un... | Sebastian Redl | 2008-12-03 | 1 | -1/+2 |
* | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -3/+14 |
* | add support for inserting a DeclarationName into a diagnostic directly | Chris Lattner | 2008-11-23 | 1 | -5/+12 |
* | Genericize the qualtype formating callback to support any diag argument. | Chris Lattner | 2008-11-23 | 1 | -3/+4 |
* | Add support for sending QualType's directly into diags and convert two | Chris Lattner | 2008-11-23 | 1 | -0/+19 |
* | move the Diag method for Sema to be inline. This shrinks the release-asserts | Chris Lattner | 2008-11-22 | 1 | -6/+2 |
* | Split the DiagnosticInfo class into two disjoint classes: | Chris Lattner | 2008-11-22 | 1 | -1/+1 |
* | remove the last old-fashioned Diag method. Transition complete! | Chris Lattner | 2008-11-20 | 1 | -5/+0 |
* | remove another old Diag method. | Chris Lattner | 2008-11-20 | 1 | -6/+0 |
* | remove another old-school Diag method. | Chris Lattner | 2008-11-20 | 1 | -6/+0 |
* | remove the type_info identifier cache. Compared to the cost | Chris Lattner | 2008-11-20 | 1 | -2/+0 |
* | compared to the rest of the code in Sema::GetStdNamespace(), | Chris Lattner | 2008-11-20 | 1 | -1/+0 |
* | remove some other identifiers that are looked up really early and only | Chris Lattner | 2008-11-20 | 1 | -6/+0 |
* | instead of looking up super at startup time, | Chris Lattner | 2008-11-20 | 1 | -2/+0 |
* | remove one more old-style Diag method. | Chris Lattner | 2008-11-19 | 1 | -7/+2 |
* | Switch several more Sema Diag methods over. This simplifies the | Chris Lattner | 2008-11-19 | 1 | -21/+4 |
* | start converting Sema over to using its canonical Diag method. | Chris Lattner | 2008-11-18 | 1 | -17/+0 |
* | introduce the one true Diag method for Sema. Next up: kill all the others off. | Chris Lattner | 2008-11-18 | 1 | -3/+3 |
* | This reworks some of the Diagnostic interfaces a bit to change how diagnostics | Chris Lattner | 2008-11-18 | 1 | -23/+13 |
* | Change the diagnostics interface to take an array of pointers to | Chris Lattner | 2008-11-18 | 1 | -8/+11 |
* | Fix <rdar://problem/6320086> parser rejects block capturing ivar. | Steve Naroff | 2008-11-17 | 1 | -1/+4 |
* | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -4/+6 |
* | Implement C++ 'typeid' parsing and sema. | Sebastian Redl | 2008-11-11 | 1 | -0/+4 |
* | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis | 2008-11-08 | 1 | -3/+3 |
* | Some cleanup of the cast checkers. Don't canonicalize types when not needed. ... | Sebastian Redl | 2008-11-04 | 1 | -7/+0 |
* | Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian... | Douglas Gregor | 2008-10-24 | 1 | -0/+7 |
* | Add Sema implementation of #pragma pack stack. | Daniel Dunbar | 2008-10-14 | 1 | -1/+1 |