1. 6422de6 Make error handling for va_start a bit more robust. Fixes PR3213. by Eli Friedman · 16 years ago
  2. b921383 Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  3. a2549ec And a test case for my previous patch. by Fariborz Jahanian · 16 years ago
  4. 41cf015 Fix regression in handling sizeof(void) in the static analyzer. by Ted Kremenek · 16 years ago
  5. ae64489 Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  6. f5da325 MemRegion: by Ted Kremenek · 16 years ago
  7. deeefde Temporarily XFAIL these tests. by Ted Kremenek · 16 years ago
  8. 2c0de35 A series of cleanups/fixes motivated by <rdar://problem/6442306>: by Ted Kremenek · 16 years ago
  9. 473d839 stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux by Sebastian Redl · 16 years ago
  10. f5dfe9c fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 by Chris Lattner · 16 years ago
  11. 455523c Add test case for using mmintrin (and making sure that inlining is by Daniel Dunbar · 16 years ago
  12. 2a6a5b3 Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
  13. 9834104 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
  14. c369780 rdar://6060752 - don't warn about trigraphs in bcpl-style comments by Chris Lattner · 16 years ago
  15. eb67c0b Add test of enumerator types by Douglas Gregor · 16 years ago
  16. 7ed37ef merge these testcases into one file. by Chris Lattner · 16 years ago
  17. 45e71bf implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
  18. d42f977 rename recovery-3 to recovery.c by Chris Lattner · 16 years ago
  19. e309d03 merge recovery-1 into recovery-3. by Chris Lattner · 16 years ago
  20. 3651bf6 merge recovery-2.c into recovery-3.c. by Chris Lattner · 16 years ago
  21. 9b937e5 add expected diag by Chris Lattner · 16 years ago
  22. a5f779dc Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  23. 0d9adb5 Testcase for something that already works. Clang agrees with Comeau, by Chris Lattner · 16 years ago
  24. bce5e4f fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY_FUNCTION__ outside func by Chris Lattner · 16 years ago
  25. 8464c37 Implement rdar://6138816 - [sema] named bitfields cannot have 0 width by Chris Lattner · 16 years ago
  26. 6b5e34f In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
  27. 76eb2c5 add annotation by Chris Lattner · 16 years ago
  28. 8acb727 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  29. d8c3fe4 Add another complex promotion test. by Anders Carlsson · 16 years ago
  30. 488a079 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
  31. 48840c7 Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  32. 28ceff7 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  33. 5b82d61 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
  34. da32905 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  35. 09e1b9e Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  36. 94cc823 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago
  37. 0b7716c Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
  38. bc6e654 Add testcase for commit r60781. by Steve Naroff · 16 years ago
  39. 91dd9d3 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  40. edb4bc9 Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties by Steve Naroff · 16 years ago
  41. 7419fbd [static analyzer] Extend VLA size checking to look for undefined sizes. by Ted Kremenek · 16 years ago
  42. 7e2e512 Add zero-sized VLA check test case. by Ted Kremenek · 16 years ago
  43. 3f60297 Incorporate MissingDealloc_IBOutlet.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
  44. 06e3052 Incorporate MissingDeallc_SEL.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
  45. 263c9b9 Add test case for <rdar://problem/6380411>. by Ted Kremenek · 16 years ago
  46. eb54a36 Fix PR3172: if we see an eof or } at the top level, reject it. by Chris Lattner · 16 years ago
  47. af15180 ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
  48. f189290 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
  49. 965242e Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
  50. fbed680 Handle chained/nested property 'getters' (obj.p1.p2.p3). by Steve Naroff · 16 years ago
  51. 8b10a23 Workaround for PR3173. The fix is correct in the sense that if the enum by Eli Friedman · 16 years ago
  52. ad476c0 a minor grammar fix by Chris Lattner · 16 years ago
  53. 68adbd1 Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352. by Anders Carlsson · 16 years ago
  54. acad6d1 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  55. e4df209 Simplify test. by Anders Carlsson · 16 years ago
  56. 88a6293 Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
  57. 108229a Add diagnostics for bitfields. by Anders Carlsson · 16 years ago
  58. 149a16a Fix invalid bit-field. by Anders Carlsson · 16 years ago
  59. 7ad911c Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
  60. a133e26 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  61. 1b21c7f Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  62. 6834228 This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  63. 5e1a68b Fixed a test case. Added a test case showing property setter's by Fariborz Jahanian · 16 years ago
  64. 4e0f645 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
  65. dd86106 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  66. 43964fb Fixed <rdar://problem/6213808> clang ObjC rewriter: @finally is not always executed by Steve Naroff · 16 years ago
  67. 5374c6b Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes PR2963 by Anders Carlsson · 16 years ago
  68. f6791c6 Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. by Anders Carlsson · 16 years ago
  69. 64c4631 Patch for diagnosing type mismatch between by Fariborz Jahanian · 16 years ago
  70. e5cb586 change getCurFunctionDecl to skip through Block contexts to find by Chris Lattner · 16 years ago
  71. d7bc88b instead of forcing blocks on by default, make them default to off, but let by Chris Lattner · 16 years ago
  72. 3d7aa25 Output better diagnostics for continuation class by Fariborz Jahanian · 16 years ago
  73. ec5f326 Code cleanup in new handling. by Sebastian Redl · 16 years ago
  74. fed204c Add 'expected-warning' to make test case pass. by Ted Kremenek · 16 years ago
  75. a7eab66 Add another static analyzer test case involving attribute(nonnull). by Ted Kremenek · 16 years ago
  76. 7cf9047 Add another test case for attribute(nonnull) checking. by Ted Kremenek · 16 years ago
  77. fd98af2 Fix some diagnostics and enhance test cases. Now tests member new and ambiguous overloads. by Sebastian Redl · 16 years ago
  78. df89d93 Revise bogus comment I just committed. by Ted Kremenek · 16 years ago
  79. d50fa92 Add comment to test case for documentation. by Ted Kremenek · 16 years ago
  80. b5ee874 Overload resolution for the operator new function. Member version is still untested. by Sebastian Redl · 16 years ago
  81. d91bb6c BasicConstraintManager: by Ted Kremenek · 16 years ago
  82. a4c51ec BasicConstraintManager: by Ted Kremenek · 16 years ago
  83. 689bba8 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 16 years ago
  84. 7c5955a Make the parser handle ::new and ::delete correctly. by Sebastian Redl · 16 years ago
  85. 334fdc9 int-arith-convert.c makes assumptions about integer sizes, so force a specific architecture by Sebastian Redl · 16 years ago
  86. ea137cd Fix for PR3150: obvious copy-paste bug in ScalarExprEmitter::VisitBinLOr. by Eli Friedman · 16 years ago
  87. 66df3ef Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  88. 8e7f957 A little more scaffolding for parsing templates: by Douglas Gregor · 16 years ago
  89. b3bec71 Basic support for parsing templates, from Andrew Sutton by Douglas Gregor · 16 years ago
  90. a750258 Objective-C keywords are not always identifiers. Some are also C++ keywords by Douglas Gregor · 16 years ago
  91. 6214132 Fix RUN line by Douglas Gregor · 16 years ago
  92. b1d3c09 Test blocks in C++ mode by Douglas Gregor · 16 years ago
  93. 80302a2 Add test case for __ASSEMBLER__ definition. by Daniel Dunbar · 16 years ago
  94. a495b27 Make sure __null test runs in both 32- and 64-bit. Thanks Anders by Douglas Gregor · 16 years ago
  95. 9ed9ac8 Parse the exception-specification throw(...), a Microsoft extension by Douglas Gregor · 16 years ago
  96. 6856193 Add the test for __null by Douglas Gregor · 16 years ago
  97. e26bb04 Fix test. (0 && (a(),1)) is a valid I-C-E according to C99. by Anders Carlsson · 16 years ago
  98. 511425a Add Sema::isNullPointerConstant which extwarns if necessary. Use it in Sema::CheckConditionalOperands. by Anders Carlsson · 16 years ago
  99. 613314d Use VerifyIntegerConstantExpression for case values. by Anders Carlsson · 16 years ago
  100. 949408e remove a test case that causes compiler warning. by Zhongxing Xu · 16 years ago