1. 4087e24 Evaluate ==,!= for complex types. by Daniel Dunbar · 15 years ago
  2. 58e22b1 Add another devilish testcase for designated initializers by Douglas Gregor · 15 years ago
  3. 6fbdc6b Eliminate infinite looping in a wacky case with designated initializers. Simplifies (somewhat) the actually checking of the initializer expression following the designators by Douglas Gregor · 15 years ago
  4. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 15 years ago
  5. a5fd07b Implement basic _Complex integer constant folding. by Daniel Dunbar · 15 years ago
  6. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 15 years ago
  7. abf4397 retain/release checker: Always generate an "autorelease" summary for an "autorelease" message, and have the summary processing logic treat it as a no-op in GC mode. This change is motivated to encode more of the semantics in the summaries themselves for eventual better diagnostics. by Ted Kremenek · 15 years ago
  8. 64cfdb7 Handle complex types in ASTContext::mergeTypes by Daniel Dunbar · 15 years ago
  9. a7ecc37 Add autorelease test case. by Ted Kremenek · 15 years ago
  10. 21593ac Implement pointer to member handling in static_cast. by Sebastian Redl · 15 years ago
  11. 6697312 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 15 years ago
  12. 23b8eaa retain/release checker: Improve diagnostics to indicate that CF objects are not automatically garbage collected. by Ted Kremenek · 15 years ago
  13. e86e4cd0 fix a crash I introduced, thanks to Ted for the awesome reduced testcase :) by Chris Lattner · 15 years ago
  14. b243b7d add test for PR2502, which was already fixed some time ago by Nuno Lopes · 15 years ago
  15. 010d514 fix PR3427: fix debuginfo for incomplete array types by Nuno Lopes · 15 years ago
  16. db64728 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 15 years ago
  17. 03eb543 If an input constraint refers to an output constraint, it should have the same constraint info as the output constraint. Fixes PR3417 by Anders Carlsson · 15 years ago
  18. c8e9cd6 eliminate some random .ll file outputs by Chris Lattner · 15 years ago
  19. d76d47e Fix bug in BasicStore::getLValueElement where if the base of an array subscript expression was an ElementRegion we stacked another ElementRegion on top of that. by Ted Kremenek · 15 years ago
  20. adf077f Fix for PR3418: make sure to handle the RHS of expressions starting with by Eli Friedman · 15 years ago
  21. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 15 years ago
  22. 202fd2c Fix a bug that I noticed by inspection. by Chris Lattner · 15 years ago
  23. 2e2558e Fix definition of __builtin_ia32_vec_set_v2di and de-XFAIL builtins-x86.c. by Daniel Dunbar · 15 years ago
  24. f20269b Add support for member pointers to const_cast. by Sebastian Redl · 15 years ago
  25. 9e5e4aa Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 15 years ago
  26. 478a18e add parsing and constraint enforcement for GNU line marker directives. by Chris Lattner · 16 years ago
  27. 8e60a29 add another sanity test. by Chris Lattner · 16 years ago
  28. 359cc44 parse and enforce required constraints on #line directives. Right now by Chris Lattner · 16 years ago
  29. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  30. 3941b18 Make the constant folder aware of by Eli Friedman · 16 years ago
  31. f011589 Fix the address of a label to be properly considered and emitted as a constant. by Eli Friedman · 16 years ago
  32. 13ca96a Fix for PR2100: merge types for variables. by Eli Friedman · 16 years ago
  33. 9804bc2 Correct test; sorry for any inconvenience. by Eli Friedman · 16 years ago
  34. 8edef7c Make tentative parsing of pointer-to-member decls work, and fix other stuff pointed out by Doug. by Sebastian Redl · 16 years ago
  35. dca2b73 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 16 years ago
  36. 769e411 Fix for PR2910: implement CodeGen for non-constant offsetof. by Eli Friedman · 16 years ago
  37. da02747 Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 16 years ago
  38. f30208a Add support for declaring pointers to members. by Sebastian Redl · 16 years ago
  39. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
  40. 8f826f0 Fix invalid evaluation of _Complex float (real & imaginary parts had by Daniel Dunbar · 16 years ago
  41. 79bc64c Handle the 'e' constraint. Fixes PR3385 by Anders Carlsson · 16 years ago
  42. 91b9f20 Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 16 years ago
  43. 8318304 Fix crash ElementRegion::getRValueType() when the RvalueType of the ArrayRegion is a typedef and not (directly) a pointer. by Ted Kremenek · 16 years ago
  44. 3148eb4 More hacking on static analyzer diagnostics. When emitting summary diagnostics the code paths for diagnostics involving paths or single locations are now unified. This patch also constifies many arguments/methods that are touched by this logic, leading to a nice overall code cleanup. by Ted Kremenek · 16 years ago
  45. d6f584f More APSInt appeasement by Douglas Gregor · 16 years ago
  46. 53d3d8e Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
  47. 0804888 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 16 years ago
  48. e3fa2de Make sure all of the isUnsigned flags line up when comparing initializer values, to really really fix PR clang/3377 by Douglas Gregor · 16 years ago
  49. b09fae7 Handle pointer arithmetic on function pointers. by Daniel Dunbar · 16 years ago
  50. f6c717c Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
  51. be109b3 Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
  52. 562c4d9 Implement retrieval of the default value of element and field regions. by Zhongxing Xu · 16 years ago
  53. b61f49c Add a test case for init expr of array and struct type. by Zhongxing Xu · 16 years ago
  54. c983b86 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
  55. 2e84257 For now, return UnknownVal() in RegionStore::getElementsSize() for AnonTypedRegions. It wasn't really doing the right thing and was crashing on rdar-6442306-1.m. This fix causes all path-sensitive test cases to pass with RegionStore. by Ted Kremenek · 16 years ago
  56. 6fd8f91 Add RegionStore support for the implicit object region that 'self' references. This causes tests 'ObjCProperties.m' and 'refcnt_naming.m' to now pass with RegionStore. by Ted Kremenek · 16 years ago
  57. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  58. 872e25c This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  59. 31c2c20 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  60. 16aaf4c This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  61. b78284a This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  62. 19e8744 Enhance test case to test RegionStore with -checker-cfref. by Ted Kremenek · 16 years ago
  63. 2758482 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  64. f1456aa This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  65. 04b1de1 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  66. 62bca24 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  67. 9945781 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  68. f9e9684 Test more array logic in outofbound.c by Ted Kremenek · 16 years ago
  69. a7ac944 Fix RegionStore::getLValueElement() to handle the case when the base region is not an ElementRegion (also do some cleanups of its core logic). by Ted Kremenek · 16 years ago
  70. f536ca3 These test cases now pass with RegionStore. by Ted Kremenek · 16 years ago
  71. 2dabd42 The 'misc-ps.m' test case now passes with RegionStore. One case needed to be split out into 'misc-ps-basic-store.m' and 'misc-ps-region-store.m' because the behavior was different between the two store models (RegionStore flags an additional valid bug). by Ted Kremenek · 16 years ago
  72. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  73. 831570c Allow creation of "dummy" compile units for debug information. by Daniel Dunbar · 16 years ago
  74. b248d53 Fix <rdar://problem/6512717> by correctly reading the right offset in the token data in PTHLexer::getSourceLocation(). by Ted Kremenek · 16 years ago
  75. bb6c8fd This test now passes using -analyzer-store-region. by Ted Kremenek · 16 years ago
  76. b87f66c This test now passes using -analyzer-store-region. by Ted Kremenek · 16 years ago
  77. 0964a06 Get RegionStore to work with the retain/release checker and its test cases. by Ted Kremenek · 16 years ago
  78. e6ea279 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
  79. ea9c26b Fix: <rdar://problem/6510344> [pth] PTH slows down regular lexer considerably (when it has substantial work) by Ted Kremenek · 16 years ago
  80. d427023 Add -analyze action to run static analyzer, instead of inferring from by Daniel Dunbar · 16 years ago
  81. d9fca6e Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 16 years ago
  82. 83bccb8 Detailed documentation for encoding of properties and a test case. by Fariborz Jahanian · 16 years ago
  83. 090b3f7 Improving on encoding of objective-c's property types. More to come. by Fariborz Jahanian · 16 years ago
  84. 6597f98 Fix for PR3350: add special-casing for "references" to va_lists in builtins. by Eli Friedman · 16 years ago
  85. 00ad0ef Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow by Douglas Gregor · 16 years ago
  86. d24d255 Make test independent of stdint.h by Daniel Dunbar · 16 years ago
  87. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  88. 7f5fce7 Dead stores checker: Fix <rdar://problem/6506065> by being more selective when say that a store is dead even though the computed value is used in the enclosing expression. by Ted Kremenek · 16 years ago
  89. 95389dd Add missing test case for operator ! result type. by Sebastian Redl · 16 years ago
  90. acdc33b Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
  91. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  92. f034e9c Patch to allow @dynamic synthesis of property in a category, by Fariborz Jahanian · 16 years ago
  93. 4d2d04e fix rdar://6505352 - Bogus warning with -WUndef, a case Anders noticed. by Chris Lattner · 16 years ago
  94. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  95. 59b5da6 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 16 years ago
  96. 190d6a2 A couple more vector component access fixes. by Nate Begeman · 16 years ago
  97. 42e1ee0 Add sema support for symbolic names in inline asm statements. by Anders Carlsson · 16 years ago
  98. 353417a Update support for vector component access on ExtVectors. by Nate Begeman · 16 years ago
  99. 573acde Diagnose that property name cannot be a bitfield by Fariborz Jahanian · 16 years ago
  100. 9bae5e7 Diagnose when method parameter is an object. by Fariborz Jahanian · 16 years ago