| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fixed source range for LabelDecl. | Abramo Bagnara | 2011-03-03 | 1 | -1/+1 |
* | From Vassil Vassilev: | Axel Naumann | 2011-02-24 | 1 | -1/+6 |
* | Use PointerUnion::getAddrOf instead of messing with PointerUnion & reinterpre... | Argyrios Kyrtzidis | 2011-02-19 | 1 | -3/+3 |
* | fix rdar://9024687, a crash on invalid that we used to silently ignore. | Chris Lattner | 2011-02-18 | 1 | -2/+3 |
* | implement basic support for __label__. I wouldn't be shocked if there are | Chris Lattner | 2011-02-18 | 1 | -4/+13 |
* | Switch labels over to using normal name lookup, instead of their | Chris Lattner | 2011-02-18 | 1 | -7/+28 |
* | When searching for visible declarations (e.g., for code completion), | Douglas Gregor | 2011-02-16 | 1 | -0/+10 |
* | Fix whitespace. | NAKAMURA Takumi | 2011-01-27 | 1 | -228/+228 |
* | 7bit-ize. | NAKAMURA Takumi | 2011-01-27 | 1 | -2/+2 |
* | Replace the representation of template template argument pack | Douglas Gregor | 2011-01-05 | 1 | -2/+3 |
* | When we attempt to create a built-in that involves a library type we | Douglas Gregor | 2011-01-03 | 1 | -5/+14 |
* | Remove obsolete comments. | Francois Pichet | 2011-01-02 | 1 | -7/+0 |
* | Restore r121752 without modification. | John McCall | 2010-12-14 | 1 | -5/+6 |
* | Pull out r121752 in case it's causing the selfhost breakage. | John McCall | 2010-12-14 | 1 | -6/+5 |
* | Factor out most of the extra state in a FunctionProtoType into a separate | John McCall | 2010-12-14 | 1 | -5/+6 |
* | Don't walk the translation unit context to produce protocol names when | Douglas Gregor | 2010-12-09 | 1 | -2/+14 |
* | Do not change the size of LookupResult::Filter based on the NDEBUG | Douglas Gregor | 2010-12-02 | 1 | -2/+0 |
* | Such function decls,as objc's objc_msgSend, builtins in | Fariborz Jahanian | 2010-11-30 | 1 | -6/+1 |
* | Restore patch reversed in r118475. Fixes | Fariborz Jahanian | 2010-11-09 | 1 | -0/+5 |
* | Fix memory leak of IdentifierIterator object. | Ted Kremenek | 2010-11-07 | 1 | -1/+1 |
* | Teach code completion to provide property results when the property | Douglas Gregor | 2010-11-02 | 1 | -1/+19 |
* | When doing name lookup for members don't look into global/namespace scope. | Argyrios Kyrtzidis | 2010-10-29 | 1 | -0/+4 |
* | Remove redundant test | Douglas Gregor | 2010-10-27 | 1 | -1/+1 |
* | Teach typo correction not to return the same keyword that matches a | Douglas Gregor | 2010-10-26 | 1 | -1/+20 |
* | C++ [basic.scope.hiding] allows an ordinary name to hide a non-tag | Douglas Gregor | 2010-10-23 | 1 | -2/+7 |
* | In the presence of using declarations, we can find the same class | Douglas Gregor | 2010-10-22 | 1 | -30/+66 |
* | Fix handling of property and ivar lookup in typo correction; the two | Douglas Gregor | 2010-10-20 | 1 | -57/+65 |
* | Introduce a simple cache for unqualified typo corrections, so that we | Douglas Gregor | 2010-10-20 | 1 | -26/+70 |
* | Eliminate another ordering dependency in typo correction. Re-enable typo.m, w... | Douglas Gregor | 2010-10-20 | 1 | -1/+4 |
* | Provide an upper bound to the edit-distance algorithm when performing | Douglas Gregor | 2010-10-19 | 1 | -1/+7 |
* | Improve the performance of typo correction, by using a simple | Douglas Gregor | 2010-10-19 | 1 | -0/+6 |
* | When performing typo correction, keep track of whether the last lookup | Douglas Gregor | 2010-10-15 | 1 | -1/+37 |
* | When we're in the context of an Objective-C message send's receiver, | Douglas Gregor | 2010-10-15 | 1 | -1/+13 |
* | When performing typo correction, look through the set of known | Douglas Gregor | 2010-10-14 | 1 | -5/+31 |
* | Tweak the typo-correction implementation to determine corrections | Douglas Gregor | 2010-10-14 | 1 | -147/+109 |
* | zap more dead code. | Chris Lattner | 2010-09-04 | 1 | -4/+1 |
* | Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtoc... | Ted Kremenek | 2010-09-01 | 1 | -2/+3 |
* | Make inline namespace not be transparent after all. The concept simply doesn'... | Sebastian Redl | 2010-08-31 | 1 | -3/+7 |
* | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -0/+1 |
* | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -1/+1 |
* | Split FunctionScopeInfo and BlockScopeInfo into their own header. | John McCall | 2010-08-25 | 1 | -1/+2 |
* | Remove the DenseSet dependency from Sema.h. | John McCall | 2010-08-25 | 1 | -0/+1 |
* | Move more stuff out of Sema.h. | John McCall | 2010-08-25 | 1 | -1/+19 |
* | More header elimination. The goal of all this is to allow Parser to | John McCall | 2010-08-24 | 1 | -0/+1 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -7/+7 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -1/+1 |
* | Extend the code-completion caching infrastructure to include global | Douglas Gregor | 2010-08-15 | 1 | -3/+36 |
* | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -2/+2 |
* | Don't try to implicitly declare special members of an invalid class. | John McCall | 2010-08-11 | 1 | -0/+4 |
* | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -1/+1 |