Age | Commit message (Expand) | Author |
2009-07-31 | Add CK_DerivedToBase and use it PerformObjectMemberConversion. | Anders Carlsson |
2009-07-31 | Add a CastKind enum to CastExpr. Right now it's not used for much but it will... | Anders Carlsson |
2009-07-30 | PR3679 - handle #pragma weak | Ryan Flynn |
2009-07-15 | Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu... | Steve Naroff |
2009-07-10 | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-07-02 | Add support for retrieving the Doxygen comment associated with a given | Douglas Gregor |
2009-06-22 | Implement implicit instantiation of the member functions of a class template | Douglas Gregor |
2009-06-22 | Rework the way we track which declarations are "used" during | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-17 | First step toward fixing <rdar://problem/6613046> refactor clang objc type re... | Steve Naroff |
2009-06-16 | Add a comment to Sema::ActOnTranslationUnitScope(). | Steve Naroff |
2009-06-14 | Introduce a SFINAE "trap" that keeps track of the number of errors | Douglas Gregor |
2009-06-14 | Update LLVM. | Douglas Gregor |
2009-06-03 | Use "()" instead of "(void)" when pretty-printing a parameter-less function t... | Argyrios Kyrtzidis |
2009-05-29 | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor |
2009-05-14 | Introduce a stack of instantiation scopes that are used to store the mapping ... | Douglas Gregor |
2009-04-30 | only support int128_t on 64-bit and larger targets. 32-bit targets don't | Chris Lattner |
2009-04-30 | initial support for __[u]int128_t, which should be basically | Chris Lattner |
2009-04-24 | PCH support for the global method pool (= instance and factory method | Douglas Gregor |
2009-04-23 | PCH support for all of the predefined Objective-C types, such as id, | 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-15 | Add warning when a tentative array definition is assumed to have one element. | Daniel Dunbar |
2009-04-14 | When building a PCH file, don't perform end-of-translation-unit | Douglas Gregor |
2009-04-01 | Give Type::getDesugaredType a "for-display" mode that can apply more | Douglas Gregor |
2009-03-28 | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner |
2009-03-20 | Eliminate post-diagnostic hooks. Instead, implement a Sema-specific | Douglas Gregor |
2009-03-13 | Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revis... | Steve Naroff |
2009-03-10 | Add type checking for tentative definitions at the end of the | Douglas Gregor |
2009-02-28 | Fix <rdar://problem/6451399> problems with labels and blocks. | Steve Naroff |
2009-02-19 | replace a dirty hack with a clean solution. Too bad we can't | Chris Lattner |
2009-02-19 | Fix a long standard problem with clang retaining "too much" sugar | Chris Lattner |
2009-02-14 | Add hook to add attributes to function declarations that we know | Douglas Gregor |
2009-02-14 | Make it possible for builtins to expression FILE* arguments, so that | Douglas Gregor |
2009-02-14 | Extend builtin "attribute" syntax to include a notation for | Douglas Gregor |
2009-02-07 | Overhaul of Stmt allocation: | Ted Kremenek |
2009-02-04 | Implement semantic analysis for the GNU flexible array initialization | Douglas Gregor |
2009-02-04 | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-22 | inline Sema::getLangOptions, rdar://6515190. This speeds up | Chris Lattner |
2009-01-22 | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-18 | Vector codegen improvements | Nate Begeman |
2009-01-09 | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor |
2009-01-08 | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff |
2008-12-22 | Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. | Sebastian Redl |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-12-04 | change getCurFunctionDecl to skip through Block contexts to find | Chris Lattner |