| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix rdar://6770142 - Class and qualified id's are compatible, just like | Chris Lattner | 2009-04-12 | 1 | -2/+1 |
| * | implement rdar://6780761, making sema reject some code that otherwise | Chris Lattner | 2009-04-12 | 1 | -8/+17 |
| * | fix blocks to reject objc interfaces returned by value. Also, | Chris Lattner | 2009-04-11 | 1 | -11/+22 |
| * | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -24/+34 |
| * | Fix <rdar://problem/6770998> make cast of super illegal (again:-) | Steve Naroff | 2009-04-08 | 1 | -1/+1 |
| * | Sema::CheckConditionalOperands(): Soften pointer/integer mismatch from error-... | Steve Naroff | 2009-04-08 | 1 | -0/+14 |
| * | Fixes method name lookup when method appears in | Fariborz Jahanian | 2009-04-07 | 1 | -9/+19 |
| * | Make casting 'super' a deprecated warning (instead of a hard error). | Steve Naroff | 2009-04-06 | 1 | -1/+1 |
| * | Fixed the Fix-It hints for comparison against a string literal. Thanks, Chris! | Douglas Gregor | 2009-04-06 | 1 | -18/+32 |
| * | Daniel convinced me that accepting "const va_list" arguments to va_arg is | Chris Lattner | 2009-04-06 | 1 | -10/+1 |
| * | in va_arg diagnostics, print out the unpromoted type. This makes the | Chris Lattner | 2009-04-05 | 1 | -4/+5 |
| * | Add a warning for questionable va_args usage. | Chris Lattner | 2009-04-05 | 1 | -2/+9 |
| * | GCC compatibility: gcc allows applying va_args to const | Chris Lattner | 2009-04-05 | 1 | -1/+4 |
| * | improve the string literal comparison warning to not call @encode's "string l... | Chris Lattner | 2009-04-03 | 1 | -1/+3 |
| * | When calling a function without a prototype for which we have a | Douglas Gregor | 2009-04-02 | 1 | -0/+9 |
| * | Add some more code modification hints | Douglas Gregor | 2009-04-01 | 1 | -2/+16 |
| * | reduce nesting. | Chris Lattner | 2009-03-31 | 1 | -14/+18 |
| * | Codegen sometimes crashes on comparisons that aren't legal, just | Chris Lattner | 2009-03-31 | 1 | -1/+9 |
| * | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -6/+6 |
| * | Change compound assignment operators to keep track of both the promoted | Eli Friedman | 2009-03-28 | 1 | -41/+72 |
| * | If the user is trying to apply the -> or . member reference operator | Douglas Gregor | 2009-03-27 | 1 | -3/+16 |
| * | Fix rdar://6719156 - clang should emit a better error when blocks are disable... | Chris Lattner | 2009-03-27 | 1 | -0/+4 |
| * | Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here | Douglas Gregor | 2009-03-26 | 1 | -2/+2 |
| * | Revamp our representation of C++ nested-name-specifiers. We now have a | Douglas Gregor | 2009-03-26 | 1 | -20/+11 |
| * | Fix <rdar://problem/6697053> instance variable is protected. | Steve Naroff | 2009-03-26 | 1 | -1/+2 |
| * | Fix a few isObjectTypes that really need to be isIncompleteOrObject | Douglas Gregor | 2009-03-24 | 1 | -9/+5 |
| * | Make sure to use RequireCompleteType rather than testing for | Douglas Gregor | 2009-03-24 | 1 | -70/+101 |
| * | Add some FIXMEs relating to incomplete types. | Eli Friedman | 2009-03-23 | 1 | -3/+14 |
| * | Partial implementation of PR3342: break out pointer sign | Eli Friedman | 2009-03-22 | 1 | -3/+30 |
| * | Fix code to mark block variables as const to actually work. Fix | Eli Friedman | 2009-03-22 | 1 | -5/+4 |
| * | Check that the return/argument types of calls are complete. | Eli Friedman | 2009-03-22 | 1 | -0/+19 |
| * | InitListDesignations hasn't been used (ever). Eliminate it, and | Douglas Gregor | 2009-03-20 | 1 | -1/+0 |
| * | Remove unneeded radar reference. | Ted Kremenek | 2009-03-20 | 1 | -3/+2 |
| * | Fix <rdar://problem/6703892> by not warning about self-comparisons of enum | Ted Kremenek | 2009-03-20 | 1 | -1/+5 |
| * | When looking for property name (or getter method) in a | Fariborz Jahanian | 2009-03-19 | 1 | -9/+54 |
| * | Introduce a new expression type, UnresolvedDeclRefExpr, that describes | Douglas Gregor | 2009-03-19 | 1 | -0/+15 |
| * | Generalize printing of nested-name-specifier sequences for use in both | Douglas Gregor | 2009-03-19 | 1 | -9/+15 |
| * | Introduce a representation for types that we referred to via a | Douglas Gregor | 2009-03-19 | 1 | -2/+2 |
| * | The scope representation can now be either a DeclContext pointer or a | Douglas Gregor | 2009-03-18 | 1 | -2/+2 |
| * | Convert a bunch of actions to smart pointers, and also bring PrintParserCallb... | Sebastian Redl | 2009-03-15 | 1 | -59/+71 |
| * | Implement template instantiation for the prefix unary operators. As | Douglas Gregor | 2009-03-13 | 1 | -107/+43 |
| * | Implement template instantiation for several more kinds of expressions: | Douglas Gregor | 2009-03-13 | 1 | -34/+56 |
| * | Refactor the way we handle operator overloading and template | Douglas Gregor | 2009-03-13 | 1 | -169/+31 |
| * | Fix <rdar://problem/6675489> BlockDecl should not use llvm::smallvector. | Steve Naroff | 2009-03-13 | 1 | -1/+2 |
| * | Reimplement fix for <rdar://problem/6451399> problems with labels and blocks. | Steve Naroff | 2009-03-13 | 1 | -1/+2 |
| * | Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revis... | Steve Naroff | 2009-03-13 | 1 | -24/+2 |
| * | Improve the representation of operator expressions like "x + y" within | Douglas Gregor | 2009-03-13 | 1 | -29/+57 |
| * | Eliminate some unused default cases in switches on the binary operator kind | Douglas Gregor | 2009-03-12 | 1 | -2/+0 |
| * | Properly restore ActiveScope when we exit parsing of a block. This | Douglas Gregor | 2009-03-11 | 1 | -2/+13 |
| * | Eliminate CXXClassVarDecl. It doesn't add anything | Douglas Gregor | 2009-03-11 | 1 | -1/+1 |