Age | Commit message (Expand) | Author |
2011-10-17 | Teach the ARC compiler to not require __bridge casts when | John McCall |
2011-10-15 | Avoid duplicate unavailbility diagnostics in objc++. | Fariborz Jahanian |
2011-10-03 | ArrayRef'ize ObjCMessageExpr | Argyrios Kyrtzidis |
2011-10-03 | Pass all the locations of the selector identifiers for a message expression f... | Argyrios Kyrtzidis |
2011-10-01 | Allow the results of cf_returns_not_retained function | John McCall |
2011-09-27 | Revert r139989 and r140031, which implemented the Objective-C type | Douglas Gregor |
2011-09-17 | objc - Treat type of 'self' in class methods as root of | Fariborz Jahanian |
2011-09-10 | Rename the ARC cast kinds to start with "ARC". | John McCall |
2011-09-09 | Don't produce 'instancetype' as the type of a message send expression. Map it... | Douglas Gregor |
2011-09-09 | Contextually converting to 'id' is not a useful operation. Contextually | John McCall |
2011-09-09 | Give conversions of block pointers to ObjC pointers a different cast kind | John McCall |
2011-09-08 | Implement the Objective-C 'instancetype' type, which is an alias of | Douglas Gregor |
2011-08-31 | Don't assert when diagnosing a missing cast of an unknown-anytype | John McCall |
2011-08-28 | Warn on missing [super finalize] calls. | Nico Weber |
2011-08-26 | Be sure to do unary conversions on the operand to an ARC | John McCall |
2011-08-22 | Warn on missing [super dealloc] calls. | Nico Weber |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-13 | With -Wselector, don't warn about unimplemented optional method | Fariborz Jahanian |
2011-07-13 | In debugger mode, make ObjC message sends to unknown selectors return | John McCall |
2011-07-07 | objc++-arc: diagnose assignment/cast of a weak-unavailable | Fariborz Jahanian |
2011-07-07 | In ARC, reclaim all return values of retainable type, not just those | John McCall |
2011-07-05 | objc-arc: enforce performSelector rules in rejecting retaining selectors | Fariborz Jahanian |
2011-06-28 | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor |
2011-06-28 | Provide fix-it for '.' <-> '->' for Objective-C ivar/property access. | Fariborz Jahanian |
2011-06-22 | objc-arc: Allow unbridged cast of retainable object to | Fariborz Jahanian |
2011-06-21 | objc-arc: Add support for unbridged cast of | Fariborz Jahanian |
2011-06-21 | objc-arc: CodeGen part of unbridged cast of CF types. | Fariborz Jahanian |
2011-06-21 | Make more use of llvm::StringRef in various APIs. In particular, don't | Jay Foad |
2011-06-20 | objc-arc: allow explicit unbridged casts if the source of the cast is a | Fariborz Jahanian |
2011-06-17 | Initialize a couple of variables to shut GCC up. | John McCall |
2011-06-16 | For the purpose of @encode'ing, accept 'void' type | Fariborz Jahanian |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-11 | Implement Objective-C Related Result Type semantics. | Douglas Gregor |
2011-05-14 | Emit an error when trying to @encode an incomplete type. | Argyrios Kyrtzidis |
2011-04-23 | "note" location of forward class used as receiver of | Fariborz Jahanian |
2011-04-20 | Fix a crash-on-invalid involving non-identifier names in a member | Douglas Gregor |
2011-04-15 | Enforce nonnull __attribute__ on Objective-C method calls. | Fariborz Jahanian |
2011-04-14 | Add a flag to StringLiteral to keep track of whether the string is a pascal s... | Anders Carlsson |
2011-04-08 | Use ExprResult& instead of Expr *& in Sema | John Wiegley |
2011-04-06 | Fix lookup for class messages sent to qualified-class | Fariborz Jahanian |
2011-03-28 | Implements property of reference types. Adding | Fariborz Jahanian |
2011-03-28 | Also 'self' in blocks need be handled specially. | Fariborz Jahanian |
2011-03-27 | 'self' is objective-c's 'self' objc pointer only in | Fariborz Jahanian |
2011-03-09 | Property setter/getter must be looked up in property type's | Fariborz Jahanian |
2011-03-09 | Lookup selector in protocol list of qualified objc type | Fariborz Jahanian |
2011-03-08 | Warn on usage of unavailable objc 'class' in | Fariborz Jahanian |
2011-02-17 | Improve diagnostics on missing property decl. | Fariborz Jahanian |
2011-02-17 | Improve diagnostics when property names an object type of | Fariborz Jahanian |
2011-02-08 | Support for objc use of property-dot syntax as receiver | Fariborz Jahanian |