1. d3b25c5 Patch by Nikita Zhuk: by Ted Kremenek · 16 years ago
  2. c8ad87b Make sure RewriteObjCMethodDecl() does a block pointer rewrite. by Steve Naroff · 16 years ago
  3. a7fbf72 Fix arithmetic type check by Douglas Gregor · 16 years ago
  4. ced80a8 Add a couple fixes for rewriting ivars/methods that use/contain blocks. by Steve Naroff · 16 years ago
  5. aa4d5ae Convert SynthesizeBlockCall() from test->AST based implementation. by Steve Naroff · 16 years ago
  6. 05d1c57 Merge the array and struct case. They are essentially the same. by Zhongxing Xu · 16 years ago
  7. 8cd5aae Rename: by Zhongxing Xu · 16 years ago
  8. 3702af5 Adjust code format. by Zhongxing Xu · 16 years ago
  9. c4f8706 Implement VisitInitListExpr(). InitListExpr will have a nonloc::CompoundVal value. by Zhongxing Xu · 16 years ago
  10. 6764b72 Add CompoundVal and CompoundValData for representing the value of InitListExpr. by Zhongxing Xu · 16 years ago
  11. bed3115 Fix 80-col. by Zhongxing Xu · 16 years ago
  12. c3f631f Fix specification references link. by Daniel Dunbar · 16 years ago
  13. 2598b57 Mark yy_fatal_error as a panic function. by Ted Kremenek · 16 years ago
  14. 3205a78 Improve documentation for Sema::CheckReferenceInit by Douglas Gregor · 16 years ago
  15. 0c0e7a6 NeXT: Emit protocol objects lazily. by Daniel Dunbar · 16 years ago
  16. fdc0372 Convert SynthBlockInitExpr() from text->AST based implementation. by Steve Naroff · 16 years ago
  17. 2a72f7b Remove workaround for reference. No longer necessary. by Sebastian Redl · 16 years ago
  18. a5a35e1 Fix missing %s in run string causing hang during tests. by Sebastian Redl · 16 years ago
  19. 4f03fd6 Fix crash reported in PR2923 where a function declared using typeof(another_function) would have FunctionDecl::getNumParams() return the number of parameters in the original function type and not the number of parameters in the actual FunctionDecl. by Ted Kremenek · 16 years ago
  20. 8e2f57a Handle block literals at file scope, remove some dead code, etc. by Steve Naroff · 16 years ago
  21. f7c2aa0 Make the non-reference check in Expr work always by Douglas Gregor · 16 years ago
  22. 6fc17ff Simplify and correct the check for function redefinitions. This does two things: by Douglas Gregor · 16 years ago
  23. f70bdb9 Implement overloading rules for reference binding by Douglas Gregor · 16 years ago
  24. a206b06 Make sure internally synthesized block pointer types are converted before pretty printing. by Steve Naroff · 16 years ago
  25. 818ce48 Temporary disable the const-object-declaration-without-initializer check, because it depends on linkage-specifier semantics we don't yet have by Douglas Gregor · 16 years ago
  26. 90f4130 Workaround an LLVM bug where inlining functions with debug info breaks by Daniel Dunbar · 16 years ago
  27. ac7ffe0 Improve llvm-gcc compatibility, -Os implies -O2 (sortof). by Daniel Dunbar · 16 years ago
  28. 8cda9e9 Add notes for SCA. by Zhongxing Xu · 16 years ago
  29. e1919d4 Update checker build. by Ted Kremenek · 16 years ago
  30. 338bd0a Update FindSpecRefs to recognize named section references. by Daniel Dunbar · 16 years ago
  31. 6a0b984 Fix for PR2966: va_start/va_end use the *address* of the by Eli Friedman · 16 years ago
  32. 6f2bb36 Patch by Nikita Zhuk: by Ted Kremenek · 16 years ago
  33. 706522f IOServiceGetMatchingServices is a release function. by Ted Kremenek · 16 years ago
  34. 8e8f3b7 Choose CompileOptions (optimization passes) to match llvm-gcc more closely. by Daniel Dunbar · 16 years ago
  35. 0b4f69f Fix mmintrin.h to use proper definition of functions taking no by Daniel Dunbar · 16 years ago
  36. 8b2e05d Rename: AddDecl => BindDecl by Zhongxing Xu · 16 years ago
  37. 15da57e Tweak Sema::CheckReferenceInit so that it (optionally) computes an by Douglas Gregor · 16 years ago
  38. ce63911 MemSpaceRegions could be uninitialized. We only require R is a real region. by Zhongxing Xu · 16 years ago
  39. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  40. 1b450b0 .s files don't require the preprocessor, patch by Roman Divacky! by Chris Lattner · 16 years ago
  41. fa15fd9 More changes necessary to integrate the objc and blocks rewriters. by Steve Naroff · 16 years ago
  42. 999e120 Minor UI enhancement: by Ted Kremenek · 16 years ago
  43. 2350a46 Patch by Nikita Zhuk: by Ted Kremenek · 16 years ago
  44. d8e3098 Access pass manager consistently. - No functionality change. by Daniel Dunbar · 16 years ago
  45. 8320aaa 80-col fixes. by Daniel Dunbar · 16 years ago
  46. 6eec8e8 Rename ExplicitCCastExpr to CStyleCastExpr by Douglas Gregor · 16 years ago
  47. 3c32817 Replace a dyn_cast with a cast when we know the exact type by Douglas Gregor · 16 years ago
  48. afd7105 Add newline. by Zhongxing Xu · 16 years ago
  49. b621394 Update random notes. by Zhongxing Xu · 16 years ago
  50. c540b26 Add isGlobalsRegion() predicate to MemRegionManager. by Zhongxing Xu · 16 years ago
  51. 21ec0e4 clarify comment, rename argument to avoid a subtle conflict by Chris Lattner · 16 years ago
  52. 524b86f Call llvm_shutdown() on (normal) termination. This makes --time-passes usable. by Daniel Dunbar · 16 years ago
  53. 2149470 Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 16 years ago
  54. 9d293df Improve our handling of (C++) references within Clang. Specifically: by Douglas Gregor · 16 years ago
  55. 8173dba Initialize Suffix and Prefix to 0, even with a bad entry. Removes an uninitialized value warning from gcc. by Ted Kremenek · 16 years ago
  56. af668b0 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  57. 83e61e5 Mark mmintrin functions static inline, this ensures they don't end up by Daniel Dunbar · 16 years ago
  58. 0d958e7 - Fix type-punning warning in SVals.cpp by using a real iterator class for symbol_iterator. by Ted Kremenek · 16 years ago
  59. 934e3e9 Remove type-punning warning in GRExprEngine. No functionality change. by Ted Kremenek · 16 years ago
  60. 1a19c29 Skip random pathname characters better. I had a 5 in mine. by Mike Stump · 16 years ago
  61. df1736d Update checker build. by Ted Kremenek · 16 years ago
  62. 1c90363 Add test case to exercise IRgen "unsupported" path (mostly cleanup). by Daniel Dunbar · 16 years ago
  63. 276373d With -verify, only exit early on failure. by Daniel Dunbar · 16 years ago
  64. 879c3ea Remove unneeded CheckASTConsumer function. - No functionality change. by Daniel Dunbar · 16 years ago
  65. d6a1c5d Comment fix, ParseAST does not take ownership of the consumer. by Daniel Dunbar · 16 years ago
  66. c532f63 Add 'expected-warning' for braces around scalar initializer by Ted Kremenek · 16 years ago
  67. 194aade Added compound literal test case. by Ted Kremenek · 16 years ago
  68. 4f09027 Added preliminary support for CompoundLiterals in the static analyzer: by Ted Kremenek · 16 years ago
  69. 664a218 Update Xcode project. by Ted Kremenek · 16 years ago
  70. 9a1f03a Pull determination of the super region for a VarRegion into a single getVarRegion() method. This provides a common clean API for clients. by Ted Kremenek · 16 years ago
  71. 329d6fd Added CompoundLiteralRegion to represent the (temporary) memory allocated for a compound literal. by Ted Kremenek · 16 years ago
  72. 80c2855 Fix testsuite regression for "crash.m". by Steve Naroff · 16 years ago
  73. d611bac Don't double free module when IRgen fails. by Daniel Dunbar · 16 years ago
  74. 7e9f1f7 Improve dependency file support. by Daniel Dunbar · 16 years ago
  75. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  76. a48396e Some fixups to the previous objc/blocks rewriter smerge. by Steve Naroff · 16 years ago
  77. ce2fc3a - Move ExprIterator to Stmt.h so that it can be used by classes defined in Stmt.h by Ted Kremenek · 16 years ago
  78. 5405523 Integrate the blocks and objc rewriters. by Steve Naroff · 16 years ago
  79. 8b3f6b5 Fix some invalid casts that are detected by Sema now or soon. by Sebastian Redl · 16 years ago
  80. 07c3767 Add store option to scan-build and ccc-analyzer. by Zhongxing Xu · 16 years ago
  81. e70559f Use ASTContext::getCanonicalType() to get TypedRegion's type. by Zhongxing Xu · 16 years ago
  82. 27b5706 An ElementRegion is really a typed region. Its super region's type has to be ArrayType. by Zhongxing Xu · 16 years ago
  83. 3dda64e When destroying a translation unit, deallocate its owned declarations in reverse order, because there may be dependencies among the declarations. by Douglas Gregor · 16 years ago
  84. 4a1513e We cannot get precise lvalue for symbolic base array region. by Zhongxing Xu · 16 years ago
  85. 6594a70 Replace common diagnostic with a convenience function. by Steve Naroff · 16 years ago
  86. a5ad863 Fix <rdar://problem/6315646> clang on xcode: error: invalid operands to binary expression ('id<NSTableViewDelegate>' and 'XCExtendedArrayController *'). by Steve Naroff · 16 years ago
  87. 8fe63af Get the canonical type for struct initialization. The original code would crash on TypedefType. by Zhongxing Xu · 16 years ago
  88. 92429dd Add test for SCA region store. by Zhongxing Xu · 16 years ago
  89. 234a7d2 Add test for SCA region store. by Zhongxing Xu · 16 years ago
  90. d03eea0 Only loc::MemRegionVal can be modified. This avoids crashing in RegionStore when a function pointer is used as an argument. by Zhongxing Xu · 16 years ago
  91. 9d72851 Rename Characteristic_t to CharacteristicKind by Chris Lattner · 16 years ago
  92. d599850 Fix the definition of __builtin_va_list on PPC, which was set to the V4 ABI, not the by Chris Lattner · 16 years ago
  93. be20bb5 make codegen reject initializes with designators, like this: by Chris Lattner · 16 years ago
  94. 418f6c7 Remember whether an initlist had a designator in the AST. by Chris Lattner · 16 years ago
  95. 220ad7c pass designators into sema. This completes parser-level designator by Chris Lattner · 16 years ago
  96. 0fc73f7 implement some more FIXMEs, by rejecting more bogus stuff in objc mode. by Chris Lattner · 16 years ago
  97. 79ed6b5 add some simple designator testcases. Reject things like this: by Chris Lattner · 16 years ago
  98. e232942 improve comments, build array and array range designator nodes, by Chris Lattner · 16 years ago
  99. 0a68b94 improve comments, build a Designation for field designators and by Chris Lattner · 16 years ago
  100. 7f9690d restructure ParseInitializerWithPotentialDesignator to make it by Chris Lattner · 16 years ago