| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Finish up variadic methods/messages. | Steve Naroff | 2007-11-15 | 1 | -5/+5 |
* | - Implement ivar rewrite (patch by Fariborz). | Steve Naroff | 2007-11-15 | 1 | -2/+6 |
* | Modified -Wfloat-equal logic to suppress warnings where floating point values | Ted Kremenek | 2007-11-13 | 1 | -2/+45 |
* | Updated diagnostic for -Wfloat-equal to underline the offending expressions. | Ted Kremenek | 2007-11-13 | 1 | -1/+2 |
* | Teach Sema::CheckCompareOperands() about "void *" (C99 6.5.9p2) | Steve Naroff | 2007-11-13 | 1 | -2/+4 |
* | Tune the lookup logic in Sema::ActOnInstanceMessage() to handle private metho... | Steve Naroff | 2007-11-13 | 1 | -0/+17 |
* | Fix Sema::CheckAssignmentConstraints() to operate on the canonical, unqualifi... | Steve Naroff | 2007-11-13 | 1 | -1/+2 |
* | Patch to do statically typed ivar references. | Fariborz Jahanian | 2007-11-12 | 1 | -3/+14 |
* | Minor twik for when there is no super class and 'super' is errornously used. | Fariborz Jahanian | 2007-11-12 | 1 | -1/+1 |
* | 'super' nailed. | Fariborz Jahanian | 2007-11-12 | 1 | -1/+22 |
* | Implement instance variable references. | Steve Naroff | 2007-11-12 | 1 | -0/+6 |
* | Tweak Sema::ActOnInstanceMessage() to treat the built-in "Class" type the sam... | Steve Naroff | 2007-11-11 | 1 | -1/+2 |
* | Make sure Sema::CheckIncrementDecrementOperand() removes typedefs when doing ... | Steve Naroff | 2007-11-11 | 1 | -1/+1 |
* | Teach Sema::ActOnInstanceMessage() about private methods. That is, methods de... | Steve Naroff | 2007-11-11 | 1 | -0/+6 |
* | Fix a basic bug (having to do with typedefs) in Sema::UsualArithmeticConversi... | Steve Naroff | 2007-11-10 | 1 | -2/+2 |
* | Sema::ActOnClassMessage()...if a class method isn't found, lookup an instance... | Steve Naroff | 2007-11-05 | 1 | -0/+4 |
* | Add a method prototype slot/getter to the ObjCMessageExpr AST. | Steve Naroff | 2007-11-03 | 1 | -5/+7 |
* | Implement rewrite rules for ObjC string constants. | Steve Naroff | 2007-11-03 | 1 | -2/+3 |
* | Implement a more sensible strategy for ObjC built-in types (addressing a long... | Steve Naroff | 2007-10-31 | 1 | -18/+5 |
* | Encode Class, SEL and Objective-C objects. | Anders Carlsson | 2007-10-31 | 1 | -0/+11 |
* | Stop pre-defining objc_msgSend/objc_getClass in the preprocessor. Instead, I ... | Steve Naroff | 2007-10-30 | 1 | -0/+2 |
* | Tightened IgnoreParen. | Ted Kremenek | 2007-10-30 | 1 | -7/+2 |
* | Added some comments. | Ted Kremenek | 2007-10-29 | 1 | -1/+10 |
* | For non-floating point types, added check for expressions of the form | Ted Kremenek | 2007-10-29 | 1 | -0/+7 |
* | For floating point equality check, we now ignore parentheses. e.g.: | Ted Kremenek | 2007-10-29 | 1 | -2/+16 |
* | For checking for floating point comparison using == or !=, we now suppress | Ted Kremenek | 2007-10-29 | 1 | -3/+13 |
* | when checking for type equality, ignore typedefs. | Chris Lattner | 2007-10-29 | 1 | -2/+2 |
* | casting to void is ok for structs (C99 6.5.4p2), this fixes | Chris Lattner | 2007-10-29 | 1 | -8/+9 |
* | Fix the previous (short lived:-) FIXME. | Steve Naroff | 2007-10-18 | 1 | -2/+3 |
* | Check for Nullness of value built in GetObjcProtoType. | Fariborz Jahanian | 2007-10-18 | 1 | -0/+2 |
* | Add a FIXME to an assert. | Steve Naroff | 2007-10-18 | 1 | -1/+2 |
* | Tweak a recent fix to UsualArithmeticConversions (made by Chris - r43113). Th... | Steve Naroff | 2007-10-18 | 1 | -4/+6 |
* | Fix a bug in Sema::CheckConditionalOperands(). When mixing pointers and null ... | Steve Naroff | 2007-10-18 | 1 | -13/+16 |
* | UsualArithmeticConversions is crashing with an assert | Chris Lattner | 2007-10-18 | 1 | -2/+2 |
* | Implementation of AST for @protocol expression. | Fariborz Jahanian | 2007-10-17 | 1 | -0/+14 |
* | Fix location processing of @selector: the range should include the @ sign. | Fariborz Jahanian | 2007-10-16 | 1 | -0/+1 |
* | Add Sema::CheckMessageArgumentTypes()... | Steve Naroff | 2007-10-16 | 1 | -3/+73 |
* | Fix location processing of @encode: the range should include the @ sign. | Chris Lattner | 2007-10-16 | 1 | -0/+1 |
* | Remove ObjcMethodDecl::getNumMethodParams/getMethodParamDecl, they aren't use... | Steve Naroff | 2007-10-16 | 1 | -3/+3 |
* | Patch to implement AST generation for objective-c's @selector expression. | Fariborz Jahanian | 2007-10-16 | 1 | -0/+8 |
* | Emit diagnostics for methods not found. | Steve Naroff | 2007-10-16 | 1 | -9/+26 |
* | initialization of references should not do default fn/array promotions. | Chris Lattner | 2007-10-16 | 1 | -2/+6 |
* | Bad cast...need to use dyn_cast_or_null. Also changed Sema::InitBuiltinVaList... | Steve Naroff | 2007-10-16 | 1 | -3/+3 |
* | Change the type of ObjCStringLiteral from "struct __builtin_CFString *" to "N... | Steve Naroff | 2007-10-15 | 1 | -3/+11 |
* | Move type compatibility predicates from Type to ASTContext. In addition, the ... | Steve Naroff | 2007-10-15 | 1 | -8/+8 |
* | Add code generation and sema checking for __builtin_va_arg. | Anders Carlsson | 2007-10-15 | 1 | -0/+24 |
* | Add support for Pascal strings. | Anders Carlsson | 2007-10-15 | 1 | -2/+13 |
* | - Teach ObjcInterfaceDecl::lookupInstance/ClassMethod to look through protocols. | Steve Naroff | 2007-10-14 | 1 | -1/+5 |
* | Generate code for va_start and va_end. | Anders Carlsson | 2007-10-12 | 1 | -4/+4 |
* | Fix 80 col violations. | Chris Lattner | 2007-10-10 | 1 | -5/+8 |