| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | 'self' is objective-c's 'self' objc pointer only in | Fariborz Jahanian | 2011-03-27 | 1 | -0/+3 | 
| *  | Property setter/getter must be looked up in property type's | Fariborz Jahanian | 2011-03-09 | 1 | -17/+16 | 
| *  | Lookup selector in protocol list of qualified objc type | Fariborz Jahanian | 2011-03-09 | 1 | -0/+17 | 
| *  | Warn on usage of unavailable objc 'class' in | Fariborz Jahanian | 2011-03-08 | 1 | -1/+1 | 
| *  | Improve diagnostics on missing property decl. | Fariborz Jahanian | 2011-02-17 | 1 | -1/+1 | 
| *  | Improve diagnostics when property names an object type of | Fariborz Jahanian | 2011-02-17 | 1 | -0/+16 | 
| *  | Support for objc use of property-dot syntax as receiver | Fariborz Jahanian | 2011-02-08 | 1 | -0/+4 | 
| *  | A few more tweaks to the blocks AST representation:            | John McCall | 2011-02-07 | 1 | -3/+10 | 
| *  | Capture a few implicit references to 'self'. | John McCall | 2011-02-03 | 1 | -3/+37 | 
| *  | Tweak diagnostic: | Ted Kremenek | 2011-01-23 | 1 | -1/+2 | 
| *  | Remove unused store to variable 'Name'.  Found by clang static analyzer. | Ted Kremenek | 2011-01-14 | 1 | -1/+0 | 
| *  | Ensure that the result type of an Objective-C class message send is | Douglas Gregor | 2011-01-11 | 1 | -5/+9 | 
| *  | Complain on missing property getter method only | Fariborz Jahanian | 2010-12-22 | 1 | -4/+11 | 
| *  | Warn when message is sent to receiver of | Fariborz Jahanian | 2010-12-21 | 1 | -3/+5 | 
| *  | Improve diagnostics when property being looked up | Fariborz Jahanian | 2010-12-16 | 1 | -0/+6 | 
| *  | Keep the source location of the selector in ObjCMessageExpr. | Argyrios Kyrtzidis | 2010-12-10 | 1 | -24/+27 | 
| *  | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall | 2010-12-04 | 1 | -0/+3 | 
| *  | Diagnose when accessing property in a class method and | Fariborz Jahanian | 2010-12-03 | 1 | -2/+2 | 
| *  | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 1 | -8/+11 | 
| *  | When unknown method is sent to a receiver of | Fariborz Jahanian | 2010-12-01 | 1 | -1/+3 | 
| *  | Add an assertion, fix a whole bunch of bugs, comment the assertion | John McCall | 2010-11-18 | 1 | -10/+21 | 
| *  | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 1 | -21/+36 | 
| *  | Introduce a null-to-pointer implicit cast kind. | John McCall | 2010-11-13 | 1 | -2/+6 | 
| *  | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -3/+1 | 
| *  | This patch implements Next's IRGen for -fconstant-string-class=class-name. | Fariborz Jahanian | 2010-10-19 | 1 | -1/+8 | 
| *  | When performing typo correction, look through the set of known | Douglas Gregor | 2010-10-14 | 1 | -5/+7 | 
| *  | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian | 2010-10-14 | 1 | -11/+31 | 
| *  | Patch implements passing arrays to functions expecting | Fariborz Jahanian | 2010-09-24 | 1 | -1/+2 | 
| *  | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor | 2010-09-16 | 1 | -1/+1 | 
| *  | Handle bracket insertion for Objective-C class messages in a very | Douglas Gregor | 2010-09-15 | 1 | -6/+6 | 
| *  | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -19/+30 | 
| *  | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -18/+18 | 
| *  | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 | 
| *  | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -2/+2 | 
| *  | More header elimination.  The goal of all this is to allow Parser to | John McCall | 2010-08-24 | 1 | -0/+1 | 
| *  | OwningExprResult -> ExprResult.  This patch brought to you by | John McCall | 2010-08-24 | 1 | -14/+14 | 
| *  | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -6/+6 | 
| *  | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -7/+5 | 
| *  | Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() | Benjamin Kramer | 2010-08-17 | 1 | -2/+2 | 
| *  | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -3/+3 | 
| *  | Fix a spurious warning when message sent to qualified-id | Fariborz Jahanian | 2010-08-10 | 1 | -2/+1 | 
| *  | Implements gcc's -Wstrict-selector-match. | Fariborz Jahanian | 2010-08-09 | 1 | -7/+13 | 
| *  | Simplify global method pool implementation in Sema. No functionality change. | Sebastian Redl | 2010-08-02 | 1 | -1/+1 | 
| *  | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -7/+1 | 
| *  | Vectors are not integer types, so the type system should not classify | Douglas Gregor | 2010-07-23 | 1 | -3/+2 | 
| *  | atch for implementation of objective-c's -Wselector | Fariborz Jahanian | 2010-07-22 | 1 | -0/+5 | 
| *  | When forming a function call or message send expression, be sure to | Douglas Gregor | 2010-07-13 | 1 | -4/+4 | 
| *  | C return types must be complete as well. | Fariborz Jahanian | 2010-06-16 | 1 | -5/+6 | 
| *  | Make sure result type of objc++ message expression is | Fariborz Jahanian | 2010-06-16 | 1 | -0/+5 | 
| *  | Improve our handling of reference binding for subobjects of | Douglas Gregor | 2010-05-22 | 1 | -15/+19 |