Age | Commit message (Expand) | Author |
2009-03-24 | Move <root>/Driver into <root>/tools/clang-cc. | Daniel Dunbar |
2009-03-13 | Implement template instantiation for several more kinds of expressions: | Douglas Gregor |
2009-03-12 | API fix: All "bodies" for functions, Objective-C methods, blocks, are assumed to | Ted Kremenek |
2009-03-03 | Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel... | Steve Naroff |
2009-02-26 | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor |
2009-02-25 | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor |
2009-02-20 | remove some more methods from objc decls, using the iterator | Chris Lattner |
2009-02-20 | remove some slow O(n) methods. | Chris Lattner |
2009-02-20 | move the interace list of @class to use ObjCList. | Chris Lattner |
2009-02-18 | privatize all of the string literal memory allocation/creation | Chris Lattner |
2009-02-18 | change the StringLiteral AST node to track all of the SourceLocations of | Chris Lattner |
2009-02-09 | CallExpr now uses ASTContext's allocate to allocate/delete its array of subex... | Ted Kremenek |
2009-02-07 | Overhaul of Stmt allocation: | Ted Kremenek |
2009-02-06 | Move StringLiteral to allocate its internal string data using the allocator in | Ted Kremenek |
2009-02-04 | lower the interface to getLineNumber like we did for | Chris Lattner |
2009-02-03 | Fix <rdar://problem/6521757> clang ObjC rewriter: Mixed Mac and Windows line ... | Steve Naroff |
2009-02-02 | RewriteObjC::RewriteBlockDeclRefExpr(): Add parens to enforce precedence. Thi... | Steve Naroff |
2009-01-28 | Code generation support for C99 designated initializers. | Douglas Gregor |
2009-01-21 | Add #line to make the Visual Studio compiler happy. | Steve Naroff |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-17 | this massive patch introduces a simple new abstraction: it makes | Chris Lattner |
2009-01-16 | more SourceLocation lexicon change: instead of referring to the | Chris Lattner |
2009-01-12 | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor |
2009-01-11 | A few property related cleanups to ObjCContainerDecl AST. | Steve Naroff |
2009-01-09 | Provide a new kind of iterator, the specific_decl_iterator, that | Douglas Gregor |
2009-01-09 | Don't crash when our FunctionDecl has a non-identifier name | Douglas Gregor |
2009-01-09 | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor |
2009-01-08 | Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). | Steve Naroff |
2009-01-08 | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff |
2008-12-23 | Fix <rdar://problem/6465284> clang ObjC rewriter: objc_super messed up again. | Steve Naroff |
2008-12-22 | Fix <rdar://problem/6463613> clang ObjC rewriter: assertion failure rewriting... | Steve Naroff |
2008-12-17 | Remove rewriter dependency on 'nil' macro (used when rewriting for(...)) | Steve Naroff |
2008-12-17 | Tweaks to allow us to rewrite with -x=objective-c++ enabled. | Steve Naroff |
2008-12-16 | Fix <rdar://problem/6445502> clang ObjC rewriter: _Block_release has wrong pa... | Steve Naroff |
2008-12-12 | Fix <rdar://problem/6435837> clang ObjC rewriter: use Block_release instead o... | Steve Naroff |
2008-12-11 | Rename a local predicate to avoid confusion with Type::isBlockPointerType(). | Steve Naroff |
2008-12-11 | Fixup generated code for imported block decl refs. | Steve Naroff |
2008-12-11 | Fix <rdar://problem/6435842> clang ObjC rewriter: #include Block.h, Block_pri... | Steve Naroff |
2008-12-11 | Fix <rdar://problem/6435382> clang ObjC rewriter: @property/@synthesize and b... | Steve Naroff |
2008-12-11 | Actually distinguish between RecordDecl::field_iterator and RecordDecl::field... | Douglas Gregor |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-12-10 | Fix regression caused by fixing <rdar://problem/6429113> clang ObjC rewriter:... | Steve Naroff |
2008-12-09 | Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with B... | Steve Naroff |
2008-12-08 | Fix a couple uninitialized variables from my previous commit. | Steve Naroff |
2008-12-08 | Fix <rdar://problem/6423452> clang ObjC rewriter: Don't use __declspec(dllimp... | Steve Naroff |
2008-12-08 | Handle chained/nested property 'getters' (obj.p1.p2.p3). | Steve Naroff |
2008-12-05 | Fixed <rdar://problem/6213808> clang ObjC rewriter: @finally is not always ex... | Steve Naroff |
2008-12-04 | Finish up support for <rdar://problem/6213955> clang ObjC rewriter: rewriter ... | Steve Naroff |
2008-12-04 | Several things... | Steve Naroff |
2008-12-03 | More support for rewriting property getter/setters. | Steve Naroff |