| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a warning to catch a bug recently caught by code review, like this: | Chris Lattner | 2010-07-13 | 1 | -1/+1 |
| * | 80 column issues. | Chris Lattner | 2010-07-13 | 1 | -7/+9 |
| * | Downgrade the "when type is in parentheses, array cannot have dynamic | Douglas Gregor | 2010-07-13 | 1 | -2/+2 |
| * | Fix PR7600, and correctly convert the result of an atomic builtin to the | Chandler Carruth | 2010-07-09 | 1 | -1/+1 |
| * | Instantiation of block literal expressions. wip. | Fariborz Jahanian | 2010-07-09 | 1 | -1/+1 |
| * | Support code completion for parameter names in Objective-C method | Douglas Gregor | 2010-07-08 | 1 | -0/+1 |
| * | Introduce a new code-completion point prior to an identifier in the | Douglas Gregor | 2010-07-08 | 1 | -0/+6 |
| * | Fix multiple emission of the this-> fixit for each instantiation by fixing the | Nick Lewycky | 2010-07-06 | 1 | -0/+7 |
| * | Introduce a new routine, LookupConstructors(), and use it for all | Douglas Gregor | 2010-07-02 | 1 | -0/+1 |
| * | Lazily declare the implicitly-declared destructor in a C++ class. | Douglas Gregor | 2010-07-02 | 1 | -0/+4 |
| * | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -15/+8 |
| * | Add a new routine Sema::LookupDestructor and make all destructor-lookup calls... | Douglas Gregor | 2010-07-01 | 1 | -1/+2 |
| * | Move the implicit declaration of a default constructor into a separate | Douglas Gregor | 2010-07-01 | 1 | -0/+12 |
| * | Move the implicit declaration of a constructor out to a separate | Douglas Gregor | 2010-07-01 | 1 | -1/+13 |
| * | Move declaration of a class's implicit copy constructor into a | Douglas Gregor | 2010-07-01 | 1 | -0/+12 |
| * | Move the implicit declaration of a class's copy-assignment operator | Douglas Gregor | 2010-07-01 | 1 | -1/+13 |
| * | Reinstate fix for PR7526, which was failing because, now that we | Douglas Gregor | 2010-07-01 | 1 | -1/+1 |
| * | Revert r107374, which broke bootstrap. | Douglas Gregor | 2010-07-01 | 1 | -1/+1 |
| * | When building the type of a destructor, make sure to keep the | Douglas Gregor | 2010-07-01 | 1 | -1/+1 |
| * | Implement C++ DR481, which clarifies that the scope of template | Douglas Gregor | 2010-07-01 | 1 | -13/+9 |
| * | Implement C++ DR299, which allows an implicit conversion from a class | Douglas Gregor | 2010-06-30 | 1 | -1/+2 |
| * | Factor the conversion from a switch condition to an integral or | Douglas Gregor | 2010-06-29 | 1 | -0/+9 |
| * | This patch fixes a bug whereby, clang skipped | Fariborz Jahanian | 2010-06-29 | 1 | -9/+2 |
| * | Allow a using directive to refer to the implicitly-defined namespace | Douglas Gregor | 2010-06-29 | 1 | -0/+1 |
| * | Partial fix for PR7267 based on comments by John McCall on an earlier patch. | Chandler Carruth | 2010-06-28 | 1 | -0/+6 |
| * | Implement dependent alignment attribute support. This is a bit gross given the | Chandler Carruth | 2010-06-25 | 1 | -0/+3 |
| * | When we see a 'template' disambiguator that marks the next identifier | Douglas Gregor | 2010-06-16 | 1 | -6/+7 |
| * | Fix the recently-added warning about 'typename' and 'template' | Douglas Gregor | 2010-06-16 | 1 | -5/+10 |
| * | Fix a point of semantics with using declaration hiding: method templates | John McCall | 2010-06-16 | 1 | -4/+7 |
| * | Tweak our handling of the notion of a standard conversion sequence | Douglas Gregor | 2010-06-09 | 1 | -2/+0 |
| * | Since the enum values for each arch's builtins overlap, it is not appropriate... | Nate Begeman | 2010-06-08 | 1 | -0/+3 |
| * | PR7245: Make binding a reference to a temporary without a usable copy | Jeffrey Yasskin | 2010-06-07 | 1 | -1/+2 |
| * | Simplify the methods for creating a pointer, reference, member-pointer, | John McCall | 2010-06-05 | 1 | -4/+8 |
| * | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -0/+4 |
| * | Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. | John McCall | 2010-06-04 | 1 | -3/+2 |
| * | Remember type source information for Objective C property declarations. | John McCall | 2010-06-04 | 1 | -2/+3 |
| * | Preserve more information from a block's original function declarator, if one | John McCall | 2010-06-04 | 1 | -7/+8 |
| * | Restructure how we interpret block-literal declarators. Correctly handle | John McCall | 2010-06-04 | 1 | -0/+3 |
| * | More refactoring. | John McCall | 2010-06-04 | 1 | -0/+7 |
| * | Teach code completion to adjust its completion priorities based on the | Douglas Gregor | 2010-05-30 | 1 | -0/+5 |
| * | A more minimal fix for PR6762. | John McCall | 2010-05-28 | 1 | -0/+4 |
| * | Implement a code-completion hook for the receiver of an Objective-C | Douglas Gregor | 2010-05-27 | 1 | -1/+1 |
| * | Sema: Replace getPragmaPackAlignment with AddAlignmentAttributesForRecord, which | Daniel Dunbar | 2010-05-27 | 1 | -3/+3 |
| * | Sema: Support for #pragma options align={reset,natural}. '#pragma options align' | Daniel Dunbar | 2010-05-27 | 1 | -0/+5 |
| * | Improve parser recovery when we encounter a dependent template name | Douglas Gregor | 2010-05-21 | 1 | -2/+4 |
| * | Propagate access specifiers to anonymous union members nested within classes. | John McCall | 2010-05-21 | 1 | -3/+3 |
| * | Added basic source locations to Elaborated and DependentName types. | Abramo Bagnara | 2010-05-19 | 1 | -1/+3 |
| * | Fix a GCC warning about inline functions not being defined. Until r104081, only | Chandler Carruth | 2010-05-19 | 1 | -3/+3 |
| * | Teach CursorVisitor about duplicate ObjCPropertyDecls that can arise because ... | Ted Kremenek | 2010-05-18 | 1 | -1/+2 |
| * | Tweak typo-correction logic a bit regarding "super", so that we | Douglas Gregor | 2010-05-18 | 1 | -1/+2 |