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