1. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 16 years ago
  2. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 16 years ago
  3. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 16 years ago
  4. 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 16 years ago
  5. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 16 years ago
  6. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 16 years ago
  7. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 16 years ago
  8. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 16 years ago
  9. 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 16 years ago
  10. 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 16 years ago
  11. 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 16 years ago
  12. 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 16 years ago
  13. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 16 years ago
  14. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 16 years ago
  15. b6789ca Add new test by Nate Begeman · 16 years ago
  16. aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 16 years ago
  17. 69153db move deprecated -> attributes.c by Chris Lattner · 16 years ago
  18. 7a03452 Chris added this testcase with r47837. The mail only shows one todo-warning but I see 3. Strangeness. Correcting lines 16 and 24. by Gabor Greif · 16 years ago
  19. ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 16 years ago
  20. bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 16 years ago
  21. da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 16 years ago
  22. fce90e3 testcase for attr deprecated, by Nuno Lopes. by Chris Lattner · 16 years ago
  23. 86e07b6 add a test case by Nate Begeman · 16 years ago
  24. 7380466 add some semantic checks for address spaces. by Chris Lattner · 16 years ago
  25. 49581f4 fix the second half of PR2041: __restrict is ok in c90 mode, even if by Chris Lattner · 17 years ago
  26. a0992b6 by Steve Naroff · 17 years ago
  27. 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
  28. d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 17 years ago
  29. 5a1b0c4 Add more tests by Anders Carlsson · 17 years ago
  30. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
  31. 3e5849e Fix PR2041: restrict is not a keyword in c90. by Chris Lattner · 17 years ago
  32. f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
  33. 708eed5 Nevermind, these tests work... I messed up my testing. by Eli Friedman · 17 years ago
  34. d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 17 years ago
  35. e39bfd0 by Steve Naroff · 17 years ago
  36. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 17 years ago
  37. bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 17 years ago
  38. 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 17 years ago
  39. 9532414 by Steve Naroff · 17 years ago
  40. 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 17 years ago
  41. 3a15485 by Steve Naroff · 17 years ago
  42. b43eaa5 by Steve Naroff · 17 years ago
  43. a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 17 years ago
  44. f76f5ed Add a couple of sema tests for qualifiers with conditionals containing void*. by Eli Friedman · 17 years ago
  45. 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago
  46. acb818a by Steve Naroff · 17 years ago
  47. 75ceedf by Steve Naroff · 17 years ago
  48. 336ed0b by Steve Naroff · 17 years ago
  49. efe7f36 by Steve Naroff · 17 years ago
  50. 3628097 by Steve Naroff · 17 years ago
  51. 03d6bc6 by Steve Naroff · 17 years ago
  52. a312ce2 Improve diagnostic for illegal array initialization. by Eli Friedman · 17 years ago
  53. 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 17 years ago
  54. 4e92acf Be a bit stricter about array type compatibility. by Eli Friedman · 17 years ago
  55. 3508084 Implement support for __extension__ which silences extwarnings in its by Chris Lattner · 17 years ago
  56. 5f0ad3f Moved "Rewriter" tests from test/Sema to test/Rewriter. by Ted Kremenek · 17 years ago
  57. 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
  58. 6e10a08 make some diagnostics more terse, update testcases. by Chris Lattner · 17 years ago
  59. 868d08f Fix a bogus test by Chris Lattner · 17 years ago
  60. 338d1e2 Fix a rewriter crash when the whole body of a foreach is itself by Chris Lattner · 17 years ago
  61. 890d93e by Steve Naroff · 17 years ago
  62. e0c5414 make this pass by adding an expected error, add some tests. by Chris Lattner · 17 years ago
  63. b7b032e by Steve Naroff · 17 years ago
  64. a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
  65. 2565eef by Steve Naroff · 17 years ago
  66. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
  67. ba03eda by Steve Naroff · 17 years ago
  68. 578edc6 by Steve Naroff · 17 years ago
  69. 1dad5b2 Diagnose bad receiver type. by Fariborz Jahanian · 17 years ago
  70. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
  71. a996033 by Steve Naroff · 17 years ago
  72. 0cbc215 Fix a bug recovering from broken code with a goto that Eli reported. by Chris Lattner · 17 years ago
  73. 7da8d94 Fixed a nasty bug which took a while to come up with a test case, by Fariborz Jahanian · 17 years ago
  74. 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
  75. ca10730 Sema::CheckInitializerTypes(). Start simpliying and cleaning up... by Steve Naroff · 17 years ago
  76. 2338d58 Elimate bogus warning when va_start is correctly used in a method. by Fariborz Jahanian · 17 years ago
  77. 7c39ff7 Synthesize methods with va-arg list correctly. by Fariborz Jahanian · 17 years ago
  78. 20ebf8f by Steve Naroff · 17 years ago
  79. 9a75f8a by Steve Naroff · 17 years ago
  80. d3cd1e5 by Steve Naroff · 17 years ago
  81. 1b4a622 by Steve Naroff · 17 years ago
  82. 67c49e8 by Steve Naroff · 17 years ago
  83. 837618c by Steve Naroff · 17 years ago
  84. e8d1c05 Added support for rewriting of continue/break statements inside ObjC2's foreach-stmt. by Fariborz Jahanian · 17 years ago
  85. dfb9bbb by Steve Naroff · 17 years ago
  86. 02f62a9 by Steve Naroff · 17 years ago
  87. 4cdec1c by Steve Naroff · 17 years ago
  88. 14f3f1b by Steve Naroff · 17 years ago
  89. 3f0c5ad Teach Type::isIntegerType() about GCC's __complex__ integer extensions... by Steve Naroff · 17 years ago
  90. adbbd0c by Steve Naroff · 17 years ago
  91. e9b1219 by Steve Naroff · 17 years ago
  92. aa58f00 by Steve Naroff · 17 years ago
  93. 1adb883 Fix ASTContext::typesAreCompatible when analyzing a function type with by Chris Lattner · 17 years ago
  94. aaffbf7 by Steve Naroff · 17 years ago
  95. 08f1967 Change Sema::CheckAddressOfOperation() to respect C99-only addressof rules. by Steve Naroff · 17 years ago
  96. 1423ea4 Tighten up handling of __func__ and friends: it should be an array by Chris Lattner · 17 years ago
  97. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  98. d577b5e Pass rewritten output to 'clang' for verification. by Fariborz Jahanian · 17 years ago
  99. 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
  100. ffce4d5 by Steve Naroff · 17 years ago