| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Completely re-implement (de-)serialization of declaration | Douglas Gregor | 2011-12-17 | 1 | -0/+2 |
* | When name lookup finds a module-private Objective-C class declaration, | Douglas Gregor | 2011-12-15 | 1 | -0/+2 |
* | When name lookup comes across a declaration that is in a module that | Douglas Gregor | 2011-12-14 | 1 | -20/+63 |
* | In Microsoft mode, don't perform typo correction in a template member functio... | Francois Pichet | 2011-12-03 | 1 | -0/+7 |
* | Make sure that name lookup in C checks whether a name is hidden. | Douglas Gregor | 2011-12-02 | 1 | -0/+5 |
* | When we perform a lookup for a dependent name that is a member of an | Douglas Gregor | 2011-10-24 | 1 | -1/+2 |
* | Rename TagDecl::isDefinition -> isCompleteDefinition | John McCall | 2011-10-07 | 1 | -2/+2 |
* | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 2011-10-06 | 1 | -0/+6 |
* | Added CXAvailability_NotAccessible to indicate that a declaration is availabl... | Erik Verbruggen | 2011-10-06 | 1 | -6/+8 |
* | Fix Sema::CorrectTypo to ignore found but unresolved symbols | Kaelyn Uhrain | 2011-09-07 | 1 | -2/+2 |
* | objective-c: this patch (re)introduces objective-c's default property | Fariborz Jahanian | 2011-08-31 | 1 | -18/+1 |
* | Declare and define implicit move constructor and assignment operator. | Sebastian Redl | 2011-08-30 | 1 | -9/+56 |
* | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian | 2011-08-27 | 1 | -4/+1 |
* | Improve overloaded function handling in the typo correction code. | Kaelyn Uhrain | 2011-08-03 | 1 | -9/+39 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -21/+21 |
* | Use the new llvm::TinyPtrVector class, which implements exactly what | Chris Lattner | 2011-07-18 | 1 | -73/+5 |
* | Fix a bug where a local variable named 'self' is causing | Fariborz Jahanian | 2011-07-12 | 1 | -1/+6 |
* | Fix typo correction crash on overloaded functions, pr10283. | Hans Wennborg | 2011-07-12 | 1 | -1/+2 |
* | Initialize member. | Benjamin Kramer | 2011-07-05 | 1 | -1/+2 |
* | When adding boolean keywords for typo correction, add either "bool" or | Douglas Gregor | 2011-07-01 | 1 | -2/+4 |
* | Fix non-determinism in selecting between equal-length names which refer | Chandler Carruth | 2011-06-28 | 1 | -1/+9 |
* | Fix an invalid use of ::back() on an newly emptied vector. Also tighten | Chandler Carruth | 2011-06-28 | 1 | -2/+4 |
* | Dynamically allocate the StringMaps used in typo correction so that we | Douglas Gregor | 2011-06-28 | 1 | -12/+26 |
* | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 2011-06-28 | 1 | -314/+537 |
* | Fix unused label warning. | Jay Foad | 2011-06-24 | 1 | -2/+0 |
* | This patch started as an attempt to fix up the horrid naming | Alexis Hunt | 2011-06-24 | 1 | -24/+36 |
* | Clean up the heart of the caching code and miss fewer edge cases. | Alexis Hunt | 2011-06-23 | 1 | -8/+22 |
* | Fix a think-o that amazingly didn't show up until I started writing | Alexis Hunt | 2011-06-22 | 1 | -1/+1 |
* | Actually, you know, fix the problem. | Alexis Hunt | 2011-06-22 | 1 | -1/+2 |
* | Avoid making assumption that this is either a CXXMethodDecl or a | Alexis Hunt | 2011-06-22 | 1 | -2/+1 |
* | Attempt to reapply this patch for caching copy assignment operator | Alexis Hunt | 2011-06-21 | 1 | -5/+27 |
* | This change is breaking selfhost. Revert it until I have more time | Alexis Hunt | 2011-06-10 | 1 | -27/+5 |
* | Implement caching of copy assignment operator lookup. | Alexis Hunt | 2011-06-10 | 1 | -5/+27 |
* | Implement caching for copy constructors in similar situations. | Alexis Hunt | 2011-06-10 | 1 | -1/+17 |
* | Implement caching of default constructors on the resolution table. This | Alexis Hunt | 2011-06-10 | 1 | -2/+123 |
* | Catch the memory leak in a bucket | Alexis Hunt | 2011-06-07 | 1 | -1/+2 |
* | Reimplement r132572 on top of a FoldingSet, thus hopefully solving both | Alexis Hunt | 2011-06-04 | 1 | -6/+55 |
* | Revert r132572 to figure out why it broke selfhost and clean it up as | Alexis Hunt | 2011-06-03 | 1 | -50/+8 |
* | Begin implementing a cache of special member lookups. Currently only | Alexis Hunt | 2011-06-03 | 1 | -8/+50 |
* | Implement implicit deletion of default constructors. | Alexis Hunt | 2011-05-11 | 1 | -3/+3 |
* | Clean up trivial default constructors now. | Alexis Hunt | 2011-05-09 | 1 | -3/+3 |
* | Don't abuse reinterpret cast to do something the API of PointerUnion | Chandler Carruth | 2011-05-02 | 1 | -2/+2 |
* | Like the coding standards say, do not use "using namespace std". | Jay Foad | 2011-04-23 | 1 | -3/+2 |
* | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -1/+4 |
* | From Vassil Vassilev: Give external source's last resort lookup a chance, eve... | Axel Naumann | 2011-04-13 | 1 | -2/+2 |
* | Objective-C++: The global namespace is an associated namespace of an | Douglas Gregor | 2011-04-12 | 1 | -1/+4 |
* | Reinstate r127112, "Propagate new-style exception spec information to ExtProt... | Sebastian Redl | 2011-03-06 | 1 | -2/+1 |
* | Revert r127112, "Propagate new-style exception spec information to ExtProtoIn... | NAKAMURA Takumi | 2011-03-06 | 1 | -1/+2 |
* | Propagate new-style exception spec information to ExtProtoInfo. | Sebastian Redl | 2011-03-05 | 1 | -2/+1 |
* | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara | 2011-03-05 | 1 | -14/+19 |