| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix a crash on test/Sema/invalid-decl.c | Chris Lattner | 2007-10-19 | 1 | -1/+7 |
* | Add a FIXME to an assert. | Steve Naroff | 2007-10-18 | 1 | -1/+1 |
* | Patch to rewrite ivar tables metadata for classes defined. | Fariborz Jahanian | 2007-10-18 | 1 | -2/+3 |
* | Fix the following bug... | Steve Naroff | 2007-10-18 | 1 | -1/+1 |
* | Generate code for static variables that don't have initializers. Also, report... | Anders Carlsson | 2007-10-17 | 1 | -5/+16 |
* | Add a new Rewriter::getRangeSize method. | Chris Lattner | 2007-10-16 | 1 | -1/+1 |
* | Patch to diagnose duplicate method implementations. | Fariborz Jahanian | 2007-10-16 | 1 | -29/+27 |
* | Remove ObjcMethodDecl::getNumMethodParams/getMethodParamDecl, they aren't use... | Steve Naroff | 2007-10-16 | 1 | -2/+2 |
* | Bad cast...need to use dyn_cast_or_null. Also changed Sema::InitBuiltinVaList... | Steve Naroff | 2007-10-16 | 1 | -1/+1 |
* | Add code generation and sema checking for __builtin_va_arg. | Anders Carlsson | 2007-10-15 | 1 | -10/+16 |
* | Several name lookup conflict detection fixes involving objective-c names. | Fariborz Jahanian | 2007-10-15 | 1 | -2/+14 |
* | Add category lookup (removing a couple FIXME's). | Steve Naroff | 2007-10-14 | 1 | -2/+2 |
* | - Added Sema::AddFactoryMethodToGlobalPool and Sema::AddInstanceMethodToGloba... | Steve Naroff | 2007-10-14 | 1 | -6/+56 |
* | Generate code for va_start and va_end. | Anders Carlsson | 2007-10-12 | 1 | -1/+3 |
* | Patch to check for duplicate method decls in protocols. | Fariborz Jahanian | 2007-10-12 | 1 | -4/+5 |
* | Check and diagnose that objective-c objects may not be statically allocated. | Fariborz Jahanian | 2007-10-12 | 1 | -0/+13 |
* | Fixed typo in comment. | Fariborz Jahanian | 2007-10-12 | 1 | -1/+1 |
* | Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry l... | Fariborz Jahanian | 2007-10-12 | 1 | -29/+34 |
* | Replace one FIXME with another. We handle protocols just fine now. The ObjC d... | Steve Naroff | 2007-10-12 | 1 | -3/+5 |
* | Fixed a bug whereby, struct tag name matches a typedef/objc-class name | Fariborz Jahanian | 2007-10-12 | 1 | -6/+11 |
* | This patch implementa objective-c's @compatibilty-alias declaration. | Fariborz Jahanian | 2007-10-11 | 1 | -0/+46 |
* | Add __builtin_va_start to the list of builtins, make __builtin_va_list availa... | Anders Carlsson | 2007-10-11 | 1 | -1/+10 |
* | Patch to create protocol conforming class types. | Fariborz Jahanian | 2007-10-11 | 1 | -8/+10 |
* | Fix 80 col violations. | Chris Lattner | 2007-10-10 | 1 | -1/+2 |
* | Refinements to Sema::GetObjcIdType()... | Steve Naroff | 2007-10-10 | 1 | -2/+2 |
* | - Make sure default return/argument types (for methods) default to "id". | Steve Naroff | 2007-10-10 | 1 | -10/+10 |
* | Remove Scope argument from ObjC actions that either don't need it or can now ... | Steve Naroff | 2007-10-10 | 1 | -16/+13 |
* | Make sure methods with no return type default to "id". | Steve Naroff | 2007-10-09 | 1 | -2/+13 |
* | Minor code clean up to make it more readable. | Fariborz Jahanian | 2007-10-09 | 1 | -17/+14 |
* | Remove addition of protocol names to declaration scopes, use a separate | Fariborz Jahanian | 2007-10-09 | 1 | -45/+11 |
* | rename some "Parse" actions to "ActOn". Move code around in | Chris Lattner | 2007-10-09 | 1 | -2/+2 |
* | Prevent memory leak by not creating a category object when there is a | Fariborz Jahanian | 2007-10-09 | 1 | -9/+7 |
* | Convert Selector Maps/Sets to use stronger typing (now that we have DenseMapI... | Steve Naroff | 2007-10-08 | 1 | -17/+14 |
* | Return NULL on invalid protocol. | Fariborz Jahanian | 2007-10-08 | 1 | -3/+9 |
* | move IdentifierTable.h from liblex to libbasic. | Chris Lattner | 2007-10-07 | 1 | -1/+0 |
* | The identifier shouldn't be added to the scope, the decl should. | Chris Lattner | 2007-10-07 | 1 | -8/+11 |
* | simplify some Selector interfaces. | Chris Lattner | 2007-10-07 | 1 | -16/+8 |
* | move ImplementationClassInfo out of ASTContext into Sema. | Chris Lattner | 2007-10-07 | 1 | -10/+2 |
* | switch ObjcCategoryImplDecl over to being a NamedDecl, remove dead ctor argum... | Chris Lattner | 2007-10-06 | 1 | -3/+2 |
* | introduce a new NamedDecl class, switch a couple of things over to using it. | Chris Lattner | 2007-10-06 | 1 | -55/+40 |
* | simplify the interface to create ObjcClassDecl's. | Chris Lattner | 2007-10-06 | 1 | -8/+8 |
* | simplify the interface for creating ObjcForwardProtocolDecl | Chris Lattner | 2007-10-06 | 1 | -7/+7 |
* | This is the first patch toward supporting protocol conforming | Fariborz Jahanian | 2007-10-05 | 1 | -2/+26 |
* | Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of | Chris Lattner | 2007-10-05 | 1 | -12/+11 |
* | Patch for 1) Checking for duplicate methods decls in intterface and category. | Fariborz Jahanian | 2007-10-05 | 1 | -25/+82 |
* | this patch accomodates clattner's comments on expression processing in @try-s... | Fariborz Jahanian | 2007-10-04 | 1 | -16/+17 |
* | Fixed tabs in couple of sources. | Fariborz Jahanian | 2007-10-04 | 1 | -21/+21 |
* | Fixed all my recent test cases to have the RUN command and | Fariborz Jahanian | 2007-10-04 | 1 | -6/+7 |
* | Finish renaming ObjC declaration actions. | Steve Naroff | 2007-10-03 | 1 | -9/+9 |
* | Renamed getCatLoc() to getLocation() to be consistant for such | Fariborz Jahanian | 2007-10-03 | 1 | -1/+1 |