1. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  2. c545862 Identify AnonPointeeRegion by the symbol that is concretized. by Zhongxing Xu · 16 years ago
  3. 3bb662a AnonPointeeRegions are now identified by the MemRegion of the pointer pointing by Zhongxing Xu · 16 years ago
  4. 83df2d2 Updated checker build. by Ted Kremenek · 16 years ago
  5. 5abfe2c Add another complex promotion test. by Anders Carlsson · 16 years ago
  6. 5b1f3f0 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
  7. bc0f6bc PreprocessorLexer (and subclasses): by Ted Kremenek · 16 years ago
  8. caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  9. bc76dd0 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  10. 2988205 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
  11. 83f96f6 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
  12. 4e78fd0 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  13. cf58e62 Declare PerIDCache as IdentifierInfo** instead of void*. This is just cleaner. No performance change. by Ted Kremenek · 16 years ago
  14. c0febd5 Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  15. e58ee0c Fix regression caused by fixing <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties by Steve Naroff · 16 years ago
  16. 8935b8b Use a scoped object to manage entry/exit from a parser scope rather than explicitly calling EnterScope/ExitScope by Douglas Gregor · 16 years ago
  17. 565c99f Append an extra newline to the module inline asm if it's not empty. by Anders Carlsson · 16 years ago
  18. 4dc506c Updated checker build. by Ted Kremenek · 16 years ago
  19. 391d895 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago
  20. effa8d1 Modify the move emulation according to the excellent design of Howard Hinnant. Makes for much nicer syntax when smart pointers are used consistently. Also, start converting internal argument passing of Parser to smart pointers. by Sebastian Redl · 16 years ago
  21. 1d6c14b Fix to BasicStoreManager::getElementLValue: If the base region is a symbol, layer an AnonTypedRegion on top of it. by Ted Kremenek · 16 years ago
  22. 91b51a9 Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
  23. 7d71b29 Have BasicStoreManager::getLValueElement() have logic similar to BasicStoreManager::getLValueField() (i.e., don't just return the 'base' as the SVal) by Ted Kremenek · 16 years ago
  24. d82565f Add testcase for commit r60781. by Steve Naroff · 16 years ago
  25. fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  26. 15faa7f Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult by Sebastian Redl · 16 years ago
  27. 2fda504 Add preliminary CFG support for @throw. We basically treat it like a return statement. by Ted Kremenek · 16 years ago
  28. bbfd07a In GRExprEngine treat @throw as an 'abort' that ends the current path. This is a temporary solution. by Ted Kremenek · 16 years ago
  29. 7f792fa Lay the groundwork for converting the entire parser-sema chain to smart pointers. by Sebastian Redl · 16 years ago
  30. 6082c62 Sema::ActOnMethodDeclaration(): Make sure we perform the default function/array conversion for parameter types. by Steve Naroff · 16 years ago
  31. c9f29c6 Fix a serious null termination bug found by David Chisnall! by Chris Lattner · 16 years ago
  32. 8b9ad38 Fill in C++ status table for expressions. by Sebastian Redl · 16 years ago
  33. 0e9eabc Consistently use smart pointers for stmt and expr nodes in parser local variables. by Sebastian Redl · 16 years ago
  34. b619d95 Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties by Steve Naroff · 16 years ago
  35. 0bc27ea initialize member variable. by Zhongxing Xu · 16 years ago
  36. 2fdf555 Add utility method. Remove an unused method. by Zhongxing Xu · 16 years ago
  37. 159d248 [static analyzer] Extend VLA size checking to look for undefined sizes. by Ted Kremenek · 16 years ago
  38. ca9bab0 Update Driver to new interface for LiveVariables. by Ted Kremenek · 16 years ago
  39. 8322d6a Add zero-sized VLA check test case. by Ted Kremenek · 16 years ago
  40. e0dbda1 Fixed LiveVariables bug where we didn't consider block-level expressions that functioned as the size of a VLA to be live. by Ted Kremenek · 16 years ago
  41. 447d7ae Change condition under which 'retain'/'copy' are directly evaluated. by Fariborz Jahanian · 16 years ago
  42. efd5994 Add checking for zero-sized VLAs. by Ted Kremenek · 16 years ago
  43. 26b58cd Incorporate MissingDealloc_IBOutlet.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
  44. 63de736 Incorporate MissingDeallc_SEL.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
  45. e0bb804 Add test case for <rdar://problem/6380411>. by Ted Kremenek · 16 years ago
  46. 90b93d6 Fix PR3172: if we see an eof or } at the top level, reject it. by Chris Lattner · 16 years ago
  47. 891dca6 improve comment. by Chris Lattner · 16 years ago
  48. 2c61566 'self.myIvar = nil' (properties) only releases myIvar when the property has kind 'assign'. This fixes <rdar://problem/6380411>. by Ted Kremenek · 16 years ago
  49. b79c01e ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
  50. 68272b8 Fix a couple uninitialized variables from my previous commit. by Steve Naroff · 16 years ago
  51. 447e4c1 Remove the #include of ScheduleDAGSDNodes.h, which is no longer necessary. by Dan Gohman · 16 years ago
  52. ba45da8 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
  53. 9bfb2a2 Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
  54. f57172b Move Sema::isTemplateParameterDecl to Decl::isTemplateParameter, where it belongs by Douglas Gregor · 16 years ago
  55. 4ebd716 Fix <rdar://problem/6423452> clang ObjC rewriter: Don't use __declspec(dllimport) for Blocks functions, as they are linked statically. by Steve Naroff · 16 years ago
  56. 8599e7a Handle chained/nested property 'getters' (obj.p1.p2.p3). by Steve Naroff · 16 years ago
  57. 377fa5d Fill in some parts of cxx_status.html by Sebastian Redl · 16 years ago
  58. e50897a fix 80-col violation. by Zhongxing Xu · 16 years ago
  59. 00c028b fix typo. by Zhongxing Xu · 16 years ago
  60. e9a0f43 Workaround for PR3173. The fix is correct in the sense that if the enum by Eli Friedman · 16 years ago
  61. 3cc461d Fix outdated comment. Checks so much more than just typedefs in C++. by Sebastian Redl · 16 years ago
  62. a3d783b add missing gentoo c++ include paths by Nuno Lopes · 16 years ago
  63. 211316f a minor grammar fix by Chris Lattner · 16 years ago
  64. 7fd1df2 Pass the VLA size expr range to the VLA diags by Anders Carlsson · 16 years ago
  65. 96e05bc Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352. by Anders Carlsson · 16 years ago
  66. 5dd4129 Setters returning a typedef of 'void' should not cause error. by Fariborz Jahanian · 16 years ago
  67. 1ac2bc4 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  68. 601bae3 Simplify test. by Anders Carlsson · 16 years ago
  69. 196d0ed Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
  70. ec604c8 Check for correct'void' return type for setter methods. by Fariborz Jahanian · 16 years ago
  71. 9f1e572 Add diagnostics for bitfields. by Anders Carlsson · 16 years ago
  72. 663388f Fix invalid bit-field. by Anders Carlsson · 16 years ago
  73. a75023d Simplify some diagnostics. by Anders Carlsson · 16 years ago
  74. 77e14bd Changed a 'FIXME' into new comment. Added a test case by Fariborz Jahanian · 16 years ago
  75. 759623e Add bandaid transfer function support for assignments involving ObjCKVCRefExpr. by Ted Kremenek · 16 years ago
  76. 567c8df Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
  77. 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  78. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  79. 9482a4f Fixed a comment. by Fariborz Jahanian · 16 years ago
  80. ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  81. a8ef2ec Fixed a test case. Added a test case showing property setter's by Fariborz Jahanian · 16 years ago
  82. 8daab97 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
  83. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  84. 8c56515 Fixed <rdar://problem/6213808> clang ObjC rewriter: @finally is not always executed by Steve Naroff · 16 years ago
  85. 49184b2 Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes PR2963 by Anders Carlsson · 16 years ago
  86. d407a76 This wasn't such a good idea after all as it broke some tests. by Anders Carlsson · 16 years ago
  87. b3fee0f Handle __builtin___CFStringMakeConstantString in Expr::Evaluate. by Anders Carlsson · 16 years ago
  88. 9e09f5d Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. by Anders Carlsson · 16 years ago
  89. 96f560b Change the implementation of symbol_iterator to not use a union and rely on any details of SymbolRef's implementation. by Ted Kremenek · 16 years ago
  90. 562731e Add SymbolRef::print() and have SymbolicRegion::print() use this method instead of calling SymbolRef::getNumber(). by Ted Kremenek · 16 years ago
  91. 6d0e2d2 Use trait-based profiling of SymbolRefs, avoiding calling getNumber() (which will soon be removed). by Ted Kremenek · 16 years ago
  92. 9ceffa9 Remove (unused) RegionExtent and subclasses. Extents are now represented easily using SVals. by Ted Kremenek · 16 years ago
  93. 2dabd43 Rename SymbolID to SymbolRef. This is a precursor to some overhauling of the representation of symbolic values. by Ted Kremenek · 16 years ago
  94. ebed797 Rename: FindContext -> FindDeclVisibleInContext. by Zhongxing Xu · 16 years ago
  95. de73941 Patch for diagnosing type mismatch between by Fariborz Jahanian · 16 years ago
  96. f3d4162 Remove SymbolDataContentsOf (unused). by Ted Kremenek · 16 years ago
  97. 2ed14be StoreManager::Retrieve and StoreManager::RemoveDeadBindings now take a GRState* argument instead of a Store. This allows them to use the GDM for storing other data. by Ted Kremenek · 16 years ago
  98. 802db9b -std=c99 defaults blocks to off even on darwin, but -fblocks overrides even it. by Chris Lattner · 16 years ago
  99. 4c3580e Finish up support for <rdar://problem/6213955> clang ObjC rewriter: rewriter doesn't appear to support @property and @synthesize. by Steve Naroff · 16 years ago
  100. 371f258 change getCurFunctionDecl to skip through Block contexts to find by Chris Lattner · 16 years ago