1. 64cfdb7 Handle complex types in ASTContext::mergeTypes by Daniel Dunbar · 15 years ago
  2. a7ecc37 Add autorelease test case. by Ted Kremenek · 15 years ago
  3. 21593ac Implement pointer to member handling in static_cast. by Sebastian Redl · 15 years ago
  4. 6697312 Complete semantic checking for typedef redeclarations in C++. The by Douglas Gregor · 15 years ago
  5. 23b8eaa retain/release checker: Improve diagnostics to indicate that CF objects are not automatically garbage collected. by Ted Kremenek · 15 years ago
  6. e86e4cd0 fix a crash I introduced, thanks to Ted for the awesome reduced testcase :) by Chris Lattner · 15 years ago
  7. b243b7d add test for PR2502, which was already fixed some time ago by Nuno Lopes · 15 years ago
  8. 010d514 fix PR3427: fix debuginfo for incomplete array types by Nuno Lopes · 15 years ago
  9. db64728 Add handling of member pointers to reinterpret_cast. by Sebastian Redl · 15 years ago
  10. 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
  11. c8e9cd6 eliminate some random .ll file outputs by Chris Lattner · 15 years ago
  12. 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
  13. adf077f Fix for PR3418: make sure to handle the RHS of expressions starting with by Eli Friedman · 15 years ago
  14. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 15 years ago
  15. 202fd2c Fix a bug that I noticed by inspection. by Chris Lattner · 15 years ago
  16. 2e2558e Fix definition of __builtin_ia32_vec_set_v2di and de-XFAIL builtins-x86.c. by Daniel Dunbar · 15 years ago
  17. f20269b Add support for member pointers to const_cast. by Sebastian Redl · 15 years ago
  18. 9e5e4aa Remove an implemented FIXME and extend test cases. Follow-up on Doug's review. by Sebastian Redl · 15 years ago
  19. 478a18e add parsing and constraint enforcement for GNU line marker directives. by Chris Lattner · 15 years ago
  20. 8e60a29 add another sanity test. by Chris Lattner · 15 years ago
  21. 359cc44 parse and enforce required constraints on #line directives. Right now by Chris Lattner · 15 years ago
  22. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 15 years ago
  23. 3941b18 Make the constant folder aware of by Eli Friedman · 15 years ago
  24. f011589 Fix the address of a label to be properly considered and emitted as a constant. by Eli Friedman · 15 years ago
  25. 13ca96a Fix for PR2100: merge types for variables. by Eli Friedman · 15 years ago
  26. 9804bc2 Correct test; sorry for any inconvenience. by Eli Friedman · 15 years ago
  27. 8edef7c Make tentative parsing of pointer-to-member decls work, and fix other stuff pointed out by Doug. by Sebastian Redl · 15 years ago
  28. dca2b73 PR3062: statement expressions should be illegal at file scope. I don't by Eli Friedman · 15 years ago
  29. 769e411 Fix for PR2910: implement CodeGen for non-constant offsetof. by Eli Friedman · 15 years ago
  30. da02747 Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) by Chris Lattner · 15 years ago
  31. f30208a Add support for declaring pointers to members. by Sebastian Redl · 15 years ago
  32. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 15 years ago
  33. 8f826f0 Fix invalid evaluation of _Complex float (real & imaginary parts had by Daniel Dunbar · 15 years ago
  34. 79bc64c Handle the 'e' constraint. Fixes PR3385 by Anders Carlsson · 15 years ago
  35. 91b9f20 Ignore parens when determining if an expr is a string literal. Fixes PR3382. by Anders Carlsson · 15 years ago
  36. 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
  37. 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
  38. d6f584f More APSInt appeasement by Douglas Gregor · 16 years ago
  39. 53d3d8e Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
  40. 0804888 Allow subtraction of function pointer types in C, as a GNU extension. Fixes rdar://problem/6520707 by Douglas Gregor · 16 years ago
  41. 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
  42. b09fae7 Handle pointer arithmetic on function pointers. by Daniel Dunbar · 16 years ago
  43. f6c717c Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
  44. be109b3 Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
  45. 562c4d9 Implement retrieval of the default value of element and field regions. by Zhongxing Xu · 16 years ago
  46. b61f49c Add a test case for init expr of array and struct type. by Zhongxing Xu · 16 years ago
  47. c983b86 Support arithmetic on pointer-to-function types as a GNU by Douglas Gregor · 16 years ago
  48. 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
  49. 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
  50. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  51. 872e25c This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  52. 31c2c20 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  53. 16aaf4c This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  54. b78284a This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  55. 19e8744 Enhance test case to test RegionStore with -checker-cfref. by Ted Kremenek · 16 years ago
  56. 2758482 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  57. f1456aa This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  58. 04b1de1 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  59. 62bca24 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  60. 9945781 This test case now passes with RegionStore. by Ted Kremenek · 16 years ago
  61. f9e9684 Test more array logic in outofbound.c by Ted Kremenek · 16 years ago
  62. 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
  63. f536ca3 These test cases now pass with RegionStore. by Ted Kremenek · 16 years ago
  64. 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
  65. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  66. 831570c Allow creation of "dummy" compile units for debug information. by Daniel Dunbar · 16 years ago
  67. b248d53 Fix <rdar://problem/6512717> by correctly reading the right offset in the token data in PTHLexer::getSourceLocation(). by Ted Kremenek · 16 years ago
  68. bb6c8fd This test now passes using -analyzer-store-region. by Ted Kremenek · 16 years ago
  69. b87f66c This test now passes using -analyzer-store-region. by Ted Kremenek · 16 years ago
  70. 0964a06 Get RegionStore to work with the retain/release checker and its test cases. by Ted Kremenek · 16 years ago
  71. e6ea279 Fix an inline asm sema bug that I introduced. by Anders Carlsson · 16 years ago
  72. ea9c26b Fix: <rdar://problem/6510344> [pth] PTH slows down regular lexer considerably (when it has substantial work) by Ted Kremenek · 16 years ago
  73. d427023 Add -analyze action to run static analyzer, instead of inferring from by Daniel Dunbar · 16 years ago
  74. d9fca6e Improvements to Sema of asm statements. Fixes <rdar://problem/6156893> by Anders Carlsson · 16 years ago
  75. 83bccb8 Detailed documentation for encoding of properties and a test case. by Fariborz Jahanian · 16 years ago
  76. 090b3f7 Improving on encoding of objective-c's property types. More to come. by Fariborz Jahanian · 16 years ago
  77. 6597f98 Fix for PR3350: add special-casing for "references" to va_lists in builtins. by Eli Friedman · 16 years ago
  78. 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
  79. d24d255 Make test independent of stdint.h by Daniel Dunbar · 16 years ago
  80. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  81. 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
  82. 95389dd Add missing test case for operator ! result type. by Sebastian Redl · 16 years ago
  83. acdc33b Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
  84. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  85. f034e9c Patch to allow @dynamic synthesis of property in a category, by Fariborz Jahanian · 16 years ago
  86. 4d2d04e fix rdar://6505352 - Bogus warning with -WUndef, a case Anders noticed. by Chris Lattner · 16 years ago
  87. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  88. 59b5da6 Support evaluation of vector constant expressions, and codegen of same. by Nate Begeman · 16 years ago
  89. 190d6a2 A couple more vector component access fixes. by Nate Begeman · 16 years ago
  90. 42e1ee0 Add sema support for symbolic names in inline asm statements. by Anders Carlsson · 16 years ago
  91. 353417a Update support for vector component access on ExtVectors. by Nate Begeman · 16 years ago
  92. 573acde Diagnose that property name cannot be a bitfield by Fariborz Jahanian · 16 years ago
  93. 9bae5e7 Diagnose when method parameter is an object. by Fariborz Jahanian · 16 years ago
  94. f54b194 Patch to re-implement ivar-list meta-data generation to fix by Fariborz Jahanian · 16 years ago
  95. 8158f69 Warn about typedefs of enums without any declarator name. Fixes rdar://problem/6503878 by Douglas Gregor · 16 years ago
  96. 72afb37 Fix analyzer crash found when scanning Wine sources where the analyzer used old logic to determine the value of a switch 'case' label. by Ted Kremenek · 16 years ago
  97. 3dfea40 Add -fnext-runtime to Objective-C properties testcase by Douglas Gregor · 16 years ago
  98. 81e51e2 add support for usage of cast to union thing with static vars by Nuno Lopes · 16 years ago
  99. 0b7a158 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 16 years ago
  100. 41f2b32 Catch a foreach parse error. by Fariborz Jahanian · 16 years ago