| Commit message (Expand) | Author | Age | Files | Lines |
| * | simplify code to use adjustParameterType, apply objc arg attributes | Chris Lattner | 2009-04-11 | 1 | -6/+7 |
| * | diagnose attempts to return objc interfaces by-value from C functions. | Chris Lattner | 2009-04-11 | 1 | -1/+9 |
| * | Improve the 'cannot pass objc interface by value' diagnostic: | Chris Lattner | 2009-04-11 | 1 | -2/+2 |
| * | Compare the predefines buffer in the PCH file with the predefines | Douglas Gregor | 2009-04-10 | 1 | -16/+0 |
| * | Various minor fixes to PCH reading and writing, with general | Douglas Gregor | 2009-04-10 | 1 | -0/+10 |
| * | Implementation of pre-compiled headers (PCH) based on lazy | Douglas Gregor | 2009-04-09 | 1 | -0/+6 |
| * | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -10/+10 |
| * | Add some FIXMEs for missing checks. | Eli Friedman | 2009-04-09 | 1 | -0/+7 |
| * | -Wmissing-prototypes shouldn't complain about main() missing a prototype. | Douglas Gregor | 2009-04-08 | 1 | -1/+2 |
| * | Diagnose uses of function specifiers on declarations which don't declare | Eli Friedman | 2009-04-07 | 1 | -12/+25 |
| * | Clean up -fixit output slightly | Douglas Gregor | 2009-04-02 | 1 | -3/+4 |
| * | Add some more code modification hints | Douglas Gregor | 2009-04-01 | 1 | -9/+31 |
| * | Make parsing a semantic analysis a little more robust following Sema | Douglas Gregor | 2009-04-01 | 1 | -3/+28 |
| * | Implement -Wmissing-prototypes. Fixes PR3911. | Douglas Gregor | 2009-03-31 | 1 | -0/+22 |
| * | Push DeclGroup much farther throughout the compiler. Now the various | Chris Lattner | 2009-03-29 | 1 | -46/+32 |
| * | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -100/+100 |
| * | Improve recovery when a constructor fails to type-check. Test case from Anders | Douglas Gregor | 2009-03-27 | 1 | -1/+1 |
| * | Factor the member access specifier setting code into its own function. No int... | Anders Carlsson | 2009-03-26 | 1 | -27/+2 |
| * | Check that the access specifier of a member redeclaration is the same as the ... | Anders Carlsson | 2009-03-26 | 1 | -3/+26 |
| * | The injected-class-name of class templates and class template | Douglas Gregor | 2009-03-26 | 1 | -0/+2 |
| * | Tighten the setAccess assert. We now allow AS_none if the decl contex is not ... | Anders Carlsson | 2009-03-25 | 1 | -1/+3 |
| * | Implement template instantiation for static data members of class | Douglas Gregor | 2009-03-25 | 1 | -64/+86 |
| * | Pass access specifiers through to member classes and member enums. | Douglas Gregor | 2009-03-25 | 1 | -1/+4 |
| * | Instantiation for member classes of class templates. Note that only | Douglas Gregor | 2009-03-25 | 1 | -1/+2 |
| * | Predicate to detect when a RecordDecl is really the injected-class-name | Douglas Gregor | 2009-03-25 | 1 | -0/+2 |
| * | Make sure to use RequireCompleteType rather than testing for | Douglas Gregor | 2009-03-24 | 1 | -33/+32 |
| * | More work on diagnosing abstract classes. We can now handle cases like | Anders Carlsson | 2009-03-24 | 1 | -7/+13 |
| * | Template instantiation for the declarations of member functions within | Douglas Gregor | 2009-03-23 | 1 | -132/+136 |
| * | More improvements to abstract type checking. Handle arrays correctly, and mak... | Anders Carlsson | 2009-03-23 | 1 | -6/+7 |
| * | It's an error to try to allocate an abstract object using new. | Anders Carlsson | 2009-03-23 | 1 | -2/+7 |
| * | Fix PR3855. When we encounter an incompatible redeclaration of a | Douglas Gregor | 2009-03-23 | 1 | -2/+5 |
| * | Tighten up the determination of whether a function declaration has a | Douglas Gregor | 2009-03-23 | 1 | -1/+1 |
| * | Thanks to Eli for pointing out my misreading of 6.2.2p5 | Douglas Gregor | 2009-03-23 | 1 | -2/+1 |
| * | Disallow abstract types where appropriate. | Anders Carlsson | 2009-03-22 | 1 | -2/+25 |
| * | Keep track of whether a class is abstract or not. This is currently only used... | Anders Carlsson | 2009-03-22 | 1 | -2/+5 |
| * | Variables marked as "extern" can actually have internal linkage if | Douglas Gregor | 2009-03-19 | 1 | -3/+14 |
| * | Add a clarifying comment about HasPrototype's computation | Douglas Gregor | 2009-03-19 | 1 | -0/+6 |
| * | If a function is declared as, e.g., | Douglas Gregor | 2009-03-19 | 1 | -2/+3 |
| * | Introduce a new expression type, UnresolvedDeclRefExpr, that describes | Douglas Gregor | 2009-03-19 | 1 | -0/+14 |
| * | Extend the use of QualifiedNameType to the creation of class template | Douglas Gregor | 2009-03-19 | 1 | -7/+2 |
| * | Introduce a representation for types that we referred to via a | Douglas Gregor | 2009-03-19 | 1 | -8/+18 |
| * | The scope representation can now be either a DeclContext pointer or a | Douglas Gregor | 2009-03-18 | 1 | -2/+2 |
| * | pull a nested conditional + comment out into its own variable, | Chris Lattner | 2009-03-17 | 1 | -5/+5 |
| * | Implement instantiation of enums within class templates. This isn't | Douglas Gregor | 2009-03-17 | 1 | -38/+55 |
| * | Check signedness of bitfield sizes. | Anders Carlsson | 2009-03-16 | 1 | -1/+1 |
| * | Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revis... | Steve Naroff | 2009-03-13 | 1 | -21/+6 |
| * | Implement template instantiation for builtin binary operators | Douglas Gregor | 2009-03-12 | 1 | -1/+2 |
| * | API fix: All "bodies" for functions, Objective-C methods, blocks, are assumed to | Ted Kremenek | 2009-03-12 | 1 | -2/+2 |
| * | Fix various problems with matching out-of-line definitions of static | Douglas Gregor | 2009-03-11 | 1 | -29/+55 |
| * | Move most of the checking from ActOnCXXMemberDeclarator to other, more genera... | Douglas Gregor | 2009-03-11 | 1 | -5/+130 |