- e9b1219 by Steve Naroff · 17 years ago
- aa58f00 by Steve Naroff · 17 years ago
- e4707ff Add codegen upport for implicit casts to aggregate exprs. by Anders Carlsson · 17 years ago
- 1adb883 Fix ASTContext::typesAreCompatible when analyzing a function type with by Chris Lattner · 17 years ago
- aaffbf7 by Steve Naroff · 17 years ago
- 08f1967 Change Sema::CheckAddressOfOperation() to respect C99-only addressof rules. by Steve Naroff · 17 years ago
- 1423ea4 Tighten up handling of __func__ and friends: it should be an array by Chris Lattner · 17 years ago
- fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
- 20552d2 Recover from user typo not having proper @interface decl and a bad foreach decl. by Fariborz Jahanian · 17 years ago
- a12a75f Remove non-ascii chaaracter from diagnostic by Fariborz Jahanian · 17 years ago
- 94cdb25 Warn (as gcc does) when @end does not close anything. by Fariborz Jahanian · 17 years ago
- d577b5e Pass rewritten output to 'clang' for verification. by Fariborz Jahanian · 17 years ago
- 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
- ffce4d5 by Steve Naroff · 17 years ago
- 4a74678 by Steve Naroff · 17 years ago
- 58d1821 by Steve Naroff · 17 years ago
- 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
- 88f50f3 Type-cast RHS of assignment to prevent warning compiling rewritten foreach code. by Fariborz Jahanian · 17 years ago
- 3f76f2a Fixed a bug whereby a parethesized collection expression was not being rewritten correctly. by Fariborz Jahanian · 17 years ago
- 7f93ce9 Another test case for testing rewriteing of nested foreach-statement. by Fariborz Jahanian · 17 years ago
- 3886012 Remove dependency on objc.h by Fariborz Jahanian · 17 years ago
- b8f13a8 by Steve Naroff · 17 years ago
- 33b9c4e Patch to rewrite ObjC2's foreach-stmt. by Fariborz Jahanian · 17 years ago
- b6d54e5 by Steve Naroff · 17 years ago
- 4d73046 Fix a nasty corner case that Neil noticed in PR1900, where we would by Chris Lattner · 17 years ago
- 540fc53 Limit type of foreach's element and collection to be a pointer to by Fariborz Jahanian · 17 years ago
- 8ce5da3 Issue diagnostics if more than one declaration in objectove-c's foreach-stmt header. by Fariborz Jahanian · 17 years ago
- b7b6115 add comments for the various AssignConvertType's, and split int->pointer from pointer->int. by Chris Lattner · 17 years ago
- 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
- 1f990d6 Patch to add semantics check for ObjC2's foreacn statement. by Fariborz Jahanian · 17 years ago
- 4667ac3 generalize some of the conversion warnings. by Chris Lattner · 17 years ago
- c992b4a update for changes in diagnostic strings. by Chris Lattner · 17 years ago
- bfe639e give better diagnostics for converting between function pointer and void*. by Chris Lattner · 17 years ago
- 9d3185e Fixed a bug reported by Chris, involving assiging 0 to a qualified object type. by Fariborz Jahanian · 17 years ago
- 8f92528 Fix a crash reported by Seo Sanghyeon. by Chris Lattner · 17 years ago
- 529bd02 When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago
- efdd157 Fix PR1895: a crash on an ugly gcc extension. by Chris Lattner · 17 years ago
- 0de2ae2 Issue diagnostic when objective-c's @interface is preceeded by a type specifier. by Fariborz Jahanian · 17 years ago
- 0ba0aa1 Prevent crash on incorrect objc messaging expression. by Fariborz Jahanian · 17 years ago
- 4119d1a Allow implicit casts during arithmetic for OCUVector operations by Nate Begeman · 17 years ago
- aabbb12 Rename stats to print-stats to avoid conflicting with llvm's by Nate Begeman · 17 years ago
- 22c940e Enable CodeGen for member expressions based on call expressions returning aggregate types. This enables expressions like 'foo().member.submember'. by Christopher Lamb · 17 years ago
- 1e57144 add a file I forgot to svn add. by Chris Lattner · 17 years ago
- cda459e use -emit-llvm-bc by Chris Lattner · 17 years ago
- 6d0747d no need to verify this, no errors/warnings are expected. by Chris Lattner · 17 years ago
- 516bd46 Fix a crash on a top-level objc string, patch by Nico Weber by Chris Lattner · 17 years ago
- cb53b36 - Use Tok.isObjCAtKeyword instead of Tok.getIdentifierInfo()->getObjCKeywordID(). by Chris Lattner · 17 years ago
- 9bb947a Remove broken assert from CodeGen. Better check is done in Sema. by Seo Sanghyeon · 17 years ago
- ad6ebd6 String literal in aggregate expression by Seo Sanghyeon · 17 years ago
- dc5c01b Another test case, testing a variety of objective-c type comparisons. by Fariborz Jahanian · 17 years ago
- 7b5e1b8 Another test for objective-c's type comparison. by Fariborz Jahanian · 17 years ago
- 4c71f1a This patch implements some of the more obscure type-checking involving by Fariborz Jahanian · 17 years ago
- 3c40085 Convert opaque type when struct definition is seen. by Devang Patel · 17 years ago
- b145e7d Patch to compare to objective-c static types where one or the other by Fariborz Jahanian · 17 years ago
- 88d7521 Test case for my last patch. by Fariborz Jahanian · 17 years ago
- cfc8738 Another test for objective-c type comparison. by Fariborz Jahanian · 17 years ago
- 0f01deb More objective-c type checking. This time comparing objective-c known objects. by Fariborz Jahanian · 17 years ago
- c395bda Patch to do type-checking for objctive-c's object types. More is yet to come. by Fariborz Jahanian · 17 years ago
- 1b9a079 implement semantic analysis for __builtin_islessequal and friends. by Chris Lattner · 17 years ago
- 2243449 Add support for #pragma mark, which shouldn't warn about bogus tokens. by Chris Lattner · 17 years ago
- cf5f931 Minor test twik. by Fariborz Jahanian · 17 years ago
- 68cfd49 reenable this code, fix the testcase. by Chris Lattner · 17 years ago
- 411f373 This patch concludes implementation of dynamic objective-c type qualified by by Fariborz Jahanian · 17 years ago
- cd88129 Implement C99 6.7.5.3p1 by Chris Lattner · 17 years ago
- d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
- 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
- 6538347 Fix the location we emit the "not a constant" error for this: by Chris Lattner · 17 years ago
- d7d860d Fix an nice and subtle parser bug reported by Nico Weber. by Chris Lattner · 17 years ago
- b99a4a3 by Steve Naroff · 17 years ago
- a56f616 by Steve Naroff · 17 years ago
- c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
- 4a33646 Modified format-string checking to not emit a warning when all of the by Ted Kremenek · 17 years ago
- 3cc4af8 by Steve Naroff · 17 years ago
- 9b73b39 Array subscription in aggregate expression by Seo Sanghyeon · 17 years ago
- 7777bb2 Implement dereference operator in aggregate expression by Seo Sanghyeon · 17 years ago
- 1dcf2c8 Don't do integer promotions of LHS for compound shift assignment. The LHS has to be a modifiable lvalue. by Chris Lattner · 17 years ago
- 4319b84 Fixed test to match the new diagnostic text. by Fariborz Jahanian · 17 years ago
- 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
- beb6636 Unbreak -stats on cocoa.h by Chris Lattner · 17 years ago
- a027b86 add run lines. by Chris Lattner · 17 years ago
- 4c88d3a add run line by Chris Lattner · 17 years ago
- 5113613 add runline, make this test real. by Chris Lattner · 17 years ago
- 32a3999 verify that tests contain RUN lines. by Chris Lattner · 17 years ago
- a9e6372 Fix a codegen crash on test/CodeGen/cast.c, reported by Keith. by Chris Lattner · 17 years ago
- 4619366 fix expected errors. by Chris Lattner · 17 years ago
- 2d6410d Add -pedantic so test passes. by Fariborz Jahanian · 17 years ago
- b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
- 4ffc541 Implemented type checking for pointer of objects of protocol-qualified types. by Fariborz Jahanian · 17 years ago
- 61477f7 Implemented rewriting of protocol-qualified global variable types. by Fariborz Jahanian · 17 years ago
- fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
- 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
- f366b4c Fixed a parsing bug whereby @optional/@required keyword is not followed by by Fariborz Jahanian · 17 years ago
- a924e7c by Steve Naroff · 17 years ago
- df5eb71 Reimplement support for strings that initialize global inits now that by Chris Lattner · 17 years ago
- 6e8df73 Add support to share llvm fields for bit-fields. by Devang Patel · 17 years ago
- 32150f3 by Steve Naroff · 17 years ago
- 2fdc374 by Steve Naroff · 17 years ago
- 4fd46bc add support for implicit cast from array to pointer that is not the element by Chris Lattner · 17 years ago
- 53ea781 disable case that makes this fail. by Chris Lattner · 17 years ago
- 14c7500 Use getABITypeSizeInBits() instead of getTypeSizeInBits() during struct layout. by Devang Patel · 17 years ago