1. 3508084 Implement support for __extension__ which silences extwarnings in its by Chris Lattner · 17 years ago
  2. 5f0ad3f Moved "Rewriter" tests from test/Sema to test/Rewriter. by Ted Kremenek · 17 years ago
  3. 369dee4 It is allowed to get the address of an array subscript, even if the array has the register qualifier, if the array is really a pointer. by Anders Carlsson · 17 years ago
  4. 6e10a08 make some diagnostics more terse, update testcases. by Chris Lattner · 17 years ago
  5. 868d08f Fix a bogus test by Chris Lattner · 17 years ago
  6. 338d1e2 Fix a rewriter crash when the whole body of a foreach is itself by Chris Lattner · 17 years ago
  7. 890d93e by Steve Naroff · 17 years ago
  8. e0c5414 make this pass by adding an expected error, add some tests. by Chris Lattner · 17 years ago
  9. b7b032e by Steve Naroff · 17 years ago
  10. a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
  11. 2565eef by Steve Naroff · 17 years ago
  12. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
  13. ba03eda by Steve Naroff · 17 years ago
  14. 578edc6 by Steve Naroff · 17 years ago
  15. 1dad5b2 Diagnose bad receiver type. by Fariborz Jahanian · 17 years ago
  16. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
  17. a996033 by Steve Naroff · 17 years ago
  18. 0cbc215 Fix a bug recovering from broken code with a goto that Eli reported. by Chris Lattner · 17 years ago
  19. 7da8d94 Fixed a nasty bug which took a while to come up with a test case, by Fariborz Jahanian · 17 years ago
  20. 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
  21. ca10730 Sema::CheckInitializerTypes(). Start simpliying and cleaning up... by Steve Naroff · 17 years ago
  22. 2338d58 Elimate bogus warning when va_start is correctly used in a method. by Fariborz Jahanian · 17 years ago
  23. 7c39ff7 Synthesize methods with va-arg list correctly. by Fariborz Jahanian · 17 years ago
  24. 20ebf8f by Steve Naroff · 17 years ago
  25. 9a75f8a by Steve Naroff · 17 years ago
  26. d3cd1e5 by Steve Naroff · 17 years ago
  27. 1b4a622 by Steve Naroff · 17 years ago
  28. 67c49e8 by Steve Naroff · 17 years ago
  29. 837618c by Steve Naroff · 17 years ago
  30. e8d1c05 Added support for rewriting of continue/break statements inside ObjC2's foreach-stmt. by Fariborz Jahanian · 17 years ago
  31. dfb9bbb by Steve Naroff · 17 years ago
  32. 02f62a9 by Steve Naroff · 17 years ago
  33. 4cdec1c by Steve Naroff · 17 years ago
  34. 14f3f1b by Steve Naroff · 17 years ago
  35. 3f0c5ad Teach Type::isIntegerType() about GCC's __complex__ integer extensions... by Steve Naroff · 17 years ago
  36. adbbd0c by Steve Naroff · 17 years ago
  37. e9b1219 by Steve Naroff · 17 years ago
  38. aa58f00 by Steve Naroff · 17 years ago
  39. 1adb883 Fix ASTContext::typesAreCompatible when analyzing a function type with by Chris Lattner · 17 years ago
  40. aaffbf7 by Steve Naroff · 17 years ago
  41. 08f1967 Change Sema::CheckAddressOfOperation() to respect C99-only addressof rules. by Steve Naroff · 17 years ago
  42. 1423ea4 Tighten up handling of __func__ and friends: it should be an array by Chris Lattner · 17 years ago
  43. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  44. d577b5e Pass rewritten output to 'clang' for verification. by Fariborz Jahanian · 17 years ago
  45. 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
  46. ffce4d5 by Steve Naroff · 17 years ago
  47. 4a74678 by Steve Naroff · 17 years ago
  48. 58d1821 by Steve Naroff · 17 years ago
  49. 88f50f3 Type-cast RHS of assignment to prevent warning compiling rewritten foreach code. by Fariborz Jahanian · 17 years ago
  50. 3f76f2a Fixed a bug whereby a parethesized collection expression was not being rewritten correctly. by Fariborz Jahanian · 17 years ago
  51. 7f93ce9 Another test case for testing rewriteing of nested foreach-statement. by Fariborz Jahanian · 17 years ago
  52. 3886012 Remove dependency on objc.h by Fariborz Jahanian · 17 years ago
  53. b8f13a8 by Steve Naroff · 17 years ago
  54. 33b9c4e Patch to rewrite ObjC2's foreach-stmt. by Fariborz Jahanian · 17 years ago
  55. b6d54e5 by Steve Naroff · 17 years ago
  56. b7b6115 add comments for the various AssignConvertType's, and split int->pointer from pointer->int. by Chris Lattner · 17 years ago
  57. 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
  58. 4667ac3 generalize some of the conversion warnings. by Chris Lattner · 17 years ago
  59. c992b4a update for changes in diagnostic strings. by Chris Lattner · 17 years ago
  60. bfe639e give better diagnostics for converting between function pointer and void*. by Chris Lattner · 17 years ago
  61. 9d3185e Fixed a bug reported by Chris, involving assiging 0 to a qualified object type. by Fariborz Jahanian · 17 years ago
  62. 529bd02 When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago
  63. aabbb12 Rename stats to print-stats to avoid conflicting with llvm's by Nate Begeman · 17 years ago
  64. dc5c01b Another test case, testing a variety of objective-c type comparisons. by Fariborz Jahanian · 17 years ago
  65. 7b5e1b8 Another test for objective-c's type comparison. by Fariborz Jahanian · 17 years ago
  66. 4c71f1a This patch implements some of the more obscure type-checking involving by Fariborz Jahanian · 17 years ago
  67. b145e7d Patch to compare to objective-c static types where one or the other by Fariborz Jahanian · 17 years ago
  68. 88d7521 Test case for my last patch. by Fariborz Jahanian · 17 years ago
  69. cfc8738 Another test for objective-c type comparison. by Fariborz Jahanian · 17 years ago
  70. 0f01deb More objective-c type checking. This time comparing objective-c known objects. by Fariborz Jahanian · 17 years ago
  71. c395bda Patch to do type-checking for objctive-c's object types. More is yet to come. by Fariborz Jahanian · 17 years ago
  72. 1b9a079 implement semantic analysis for __builtin_islessequal and friends. by Chris Lattner · 17 years ago
  73. cf5f931 Minor test twik. by Fariborz Jahanian · 17 years ago
  74. 411f373 This patch concludes implementation of dynamic objective-c type qualified by by Fariborz Jahanian · 17 years ago
  75. cd88129 Implement C99 6.7.5.3p1 by Chris Lattner · 17 years ago
  76. d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  77. 6538347 Fix the location we emit the "not a constant" error for this: by Chris Lattner · 17 years ago
  78. d7d860d Fix an nice and subtle parser bug reported by Nico Weber. by Chris Lattner · 17 years ago
  79. b99a4a3 by Steve Naroff · 17 years ago
  80. a56f616 by Steve Naroff · 17 years ago
  81. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  82. 4a33646 Modified format-string checking to not emit a warning when all of the by Ted Kremenek · 17 years ago
  83. 3cc4af8 by Steve Naroff · 17 years ago
  84. 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
  85. 4319b84 Fixed test to match the new diagnostic text. by Fariborz Jahanian · 17 years ago
  86. 79a99f2 Concatenation of objc strings. by Fariborz Jahanian · 17 years ago
  87. beb6636 Unbreak -stats on cocoa.h by Chris Lattner · 17 years ago
  88. a027b86 add run lines. by Chris Lattner · 17 years ago
  89. 4619366 fix expected errors. by Chris Lattner · 17 years ago
  90. 2d6410d Add -pedantic so test passes. by Fariborz Jahanian · 17 years ago
  91. b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
  92. 4ffc541 Implemented type checking for pointer of objects of protocol-qualified types. by Fariborz Jahanian · 17 years ago
  93. 61477f7 Implemented rewriting of protocol-qualified global variable types. by Fariborz Jahanian · 17 years ago
  94. 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
  95. a924e7c by Steve Naroff · 17 years ago
  96. 2fdc374 by Steve Naroff · 17 years ago
  97. 6e4ab61 Implement correct semantic analysis of subtractions, implementing C99 6.5.6. by Chris Lattner · 17 years ago
  98. c92942c Test case for my last patch for implementation of static protocoled type by Fariborz Jahanian · 17 years ago
  99. 36ee2cb Patch for rewriting of @protocol. by Fariborz Jahanian · 17 years ago
  100. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago