1. af68202 Improve merging of function declarations. Specifically: by Douglas Gregor · 16 years ago
  2. d583e83 PTH: When emitting tokens for literals with cached spellings, change the token by Ted Kremenek · 16 years ago
  3. 2e7c95e Updated checker build. by Ted Kremenek · 16 years ago
  4. 5baec4d ccc: Don't remove result files on error when -save-temps is present. by Daniel Dunbar · 16 years ago
  5. 70d8356 Move PTHStatCache within the anonymous namespace. by Ted Kremenek · 16 years ago
  6. 6b4798a Tidy up 'ExecutionContinues' to distinguish between jumping to the end of a 'method' or 'funciton'. by Ted Kremenek · 16 years ago
  7. 9dd0bb2 Find 'clang' in 'bin' subdirectory instead of 'cbin'. by Ted Kremenek · 16 years ago
  8. 5407a8e Tidy up the path diagnostic generation logic in BugReporter and remove a case where an "Execution continues..." diagnostic could result in an empty message bubble. by Ted Kremenek · 16 years ago
  9. 9513cfd fix rdar://6611778, a redefinition of an interface was causing an by Chris Lattner · 16 years ago
  10. b0fb8f9 Goodbye old-ccc; please use tools/ccc/ccc. by Daniel Dunbar · 16 years ago
  11. 2224fb2 We should not generate __weak write barrier on indirect reference by Fariborz Jahanian · 16 years ago
  12. 5fd818b - Generate error for protocol qualifiers on 'Class'. by Steve Naroff · 16 years ago
  13. 6805fc4 Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. by Steve Naroff · 16 years ago
  14. 51e57e6 Add copy assignment operator, caught by doug. by Chris Lattner · 16 years ago
  15. aac8283 Add more boilerplate logic to more accurately reason about autorelease pools. by Ted Kremenek · 16 years ago
  16. 0a06740 Add low level support for generating invoke instead of calls. by Daniel Dunbar · 16 years ago
  17. 56c70aa Fix 80 col. violations. by Ted Kremenek · 16 years ago
  18. 064ef32 Per Chris L.'s suggestion, use getAsFunctionType() instead of getDesguaredType(). Constify some pointers along the way. by Ted Kremenek · 16 years ago
  19. 670901a Remove isSuperExpr(), which ignores any casts on 'super'. by Steve Naroff · 16 years ago
  20. a63aaeb A few small improvements to Evaluate for stuff I noted in FIXMEs. by Eli Friedman · 16 years ago
  21. 7e3a327 retain/release checker: For now don't track the retain count of NSWindow objects (opt for false negatives). by Ted Kremenek · 16 years ago
  22. 4ad1cc9 More retain/release naming convention tests. by Ted Kremenek · 16 years ago
  23. bfc629c Remove typo. by Ted Kremenek · 16 years ago
  24. f21cb24 '[NSAutoreleasePool addObject:]' has an 'autorelease' effect, not a DoNothing effect. by Ted Kremenek · 16 years ago
  25. a3d6042 Sema::ActOnInstanceMessage(): Tighen up the lookup rules for handling messages to 'Class'. Also improve "super" handling. by Steve Naroff · 16 years ago
  26. f221e84 Add test case for PR 2599. by Ted Kremenek · 16 years ago
  27. cb1774c Minor cleanup, replace bool with qual_empty(). by Steve Naroff · 16 years ago
  28. d85ba92 Contains the following (related to problems found while investigting <rdar://problem/6497631> Message lookup is sometimes different than gcc's). by Steve Naroff · 16 years ago
  29. 03650a5 Make sure to reset the DidCallStackSave variable before emitting a compound statement. Fixes PR3649. by Anders Carlsson · 16 years ago
  30. 0c195b9 More objc gc work. Match gcc's treatment of ivar access by Fariborz Jahanian · 16 years ago
  31. be72b7c Copy some clenaups from Eli to code that I copied. :-) by Mike Stump · 16 years ago
  32. 39bcc61 Cleanp code with some recent suggestions. by Mike Stump · 16 years ago
  33. 2207dec A bit of Evaluate cleanup. Also, a full audit of what's missing that by Eli Friedman · 16 years ago
  34. e268dd3 Update to checker-0.162 (fixed header issue in tar.bz2 package). by Ted Kremenek · 16 years ago
  35. 19ec61d Reverted back to checker-0.161 because of a header issue. by Ted Kremenek · 16 years ago
  36. 4780bb6 Updated checker build. by Ted Kremenek · 16 years ago
  37. d0536ac x86_64 ABI: Actually, we can always pass things we want to pass in by Daniel Dunbar · 16 years ago
  38. 1c39821 ccc: Remove unknown host warning, it was breaking gcc's configure. by Daniel Dunbar · 16 years ago
  39. 569d6c9 Fix test to be legal on 64-bit systems. by Eli Friedman · 16 years ago
  40. ea5a6b0 Fix regression in naming convention derivation: a method only follows the copy 'rule' if it doesn't already start with 'init', etc. by Ted Kremenek · 16 years ago
  41. e31e02d Eliminate a bunch of code which should be dead. by Eli Friedman · 16 years ago
  42. 4e958f0 x86_64 ABI: Make sure to pass vectors that we want to pass in memory by Daniel Dunbar · 16 years ago
  43. 083fb66 Throw the switch to exclusively use Evaluate (along with the small by Eli Friedman · 16 years ago
  44. d97f595 x86_64 ABI: Pass 32-bit vectors as Integer to match gcc. We don't care by Daniel Dunbar · 16 years ago
  45. 640cdd4 ABITestGen: Use explicit list of vector types instead of just a list by Daniel Dunbar · 16 years ago
  46. b341feb x86_64 ABI: Classify <1 x i64> as INTEGER (match gcc not llvm-gcc). by Daniel Dunbar · 16 years ago
  47. 2f6d70d Enhance Evaluate to handle ObjC qualified id and class types; as far as by Eli Friedman · 16 years ago
  48. b1c0b54 Fix for PR3433: map __alignof__ to preferred alignment. (This was by Eli Friedman · 16 years ago
  49. eb14292 Last part of PR3254: use the same alignment computation in Sema and by Eli Friedman · 16 years ago
  50. 0ee5732 Improvements to ASTContext::getDeclAlignInBytes; fixes the testcase in by Eli Friedman · 16 years ago
  51. 87bd165 Remove debugging statement. by Steve Naroff · 16 years ago
  52. 14125b0 Match gcc and always perform array/function conversion for asm input exprs. Fixes PR3641. by Anders Carlsson · 16 years ago
  53. 858c64d Correctly encode incomplete and variable length arrays. Fixes PR3639. by Anders Carlsson · 16 years ago
  54. 6132053 ccc: Remove temporary files used in compilation, and remove by Daniel Dunbar · 16 years ago
  55. ec93a39 Sanity fix for PR3642: if we're treating a diagnostic as an error, it's by Eli Friedman · 16 years ago
  56. ac1d7d8 Force arch for these test cases. by Daniel Dunbar · 16 years ago
  57. 1ff3c9d local array of objects are non-gc'able. by Fariborz Jahanian · 16 years ago
  58. d305a86 More work to integrate newly added ObjCQualifiedClassType into the type system. by Steve Naroff · 16 years ago
  59. 4e60429 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 16 years ago
  60. 262a5dd Add support for GCC ObjC extension "Class<protocol>". Sigh. by Steve Naroff · 16 years ago
  61. 139c396 The blocks ABI is wrong, add a FIXME. by Mike Stump · 16 years ago
  62. fca5da0 Add CodeGen support for the helper for BlockDeclRefExprs. The easier by Mike Stump · 16 years ago
  63. c84582b Warn about bogus protocol qualifiers. by Steve Naroff · 16 years ago
  64. 235e0bb Warn on use of __weak attribute on local variable (objc2 gc specific). by Fariborz Jahanian · 16 years ago
  65. 184541a Fix a bug whereby a pointer to a __weak was not recognized by Fariborz Jahanian · 16 years ago
  66. fd42ffc Use llvm::StringsEqualNoCase instead of strncasecmp. by Ted Kremenek · 16 years ago
  67. c69da27 Fixed an ICE in meta-data generation of __weak/__strong ivars. by Fariborz Jahanian · 16 years ago
  68. b5c66db Evaluation of unary deref could call integer evaluator on non-integral by Daniel Dunbar · 16 years ago
  69. 2353613 Fix build on windows. by Cédric Venet · 16 years ago
  70. 6c4e040 Add test case to record a couple inconsistencies with GCC (found in <rdar://problem/6561076> [clang on Xcode] warning: cannot find protocol definition for 'OzzyP'). by Steve Naroff · 16 years ago
  71. 0bbc135 by Steve Naroff · 16 years ago
  72. 874756f Update checker build. by Ted Kremenek · 16 years ago
  73. 4395b45 Improved naming convention heuristics in the retain/release checker to better by Ted Kremenek · 16 years ago
  74. f40e357 Update scan-build help diagnostic. by Ted Kremenek · 16 years ago
  75. 34e05fe Only create a preprocessed file for an ignored attribute if there currently does not exist an 'attribute_ignored_XXX.txt' file for that attribute. by Ted Kremenek · 16 years ago
  76. 73cd1e8 Slight tweak to last commit: make sure to copy CVR qualifiers for fixed by Eli Friedman · 16 years ago
  77. d431428 Re-fix r65140 correctly. by Eli Friedman · 16 years ago
  78. a4c010e Handle case of none gc'able objects regardless of their type. by Fariborz Jahanian · 16 years ago
  79. 9fe0411 Emit extern_weak when needed. - PR3629. by Daniel Dunbar · 16 years ago
  80. 455cc33 We must always mangle attribute overloadable functions; even if in a by Daniel Dunbar · 16 years ago
  81. a442ad9 Fix <rdar://problem/6500554> missing objc error message. by Steve Naroff · 16 years ago
  82. 89188b2 switch the macroinfo argument lists from being allocated off the heap by Chris Lattner · 16 years ago
  83. 1c9b6b8 detemplatify setArgumentList and some other cleanups. by Chris Lattner · 16 years ago
  84. f756656 require the MAcroInfo objects are explcitly destroyed. by Chris Lattner · 16 years ago
  85. ba259aa Make 'RangeConstraintManager' the default ConstraintManager. by Ted Kremenek · 16 years ago
  86. cf6c828 allocate and dellocate objc decl list through AST Context instead of by Chris Lattner · 16 years ago
  87. a5d4771 fix indentation by Chris Lattner · 16 years ago
  88. 320dff2 silence some warnings in no asserts mode. by Chris Lattner · 16 years ago
  89. df6133b add plumbing to get ASTContext& down to allocation/deallocation points in ObjCList, by Chris Lattner · 16 years ago
  90. 217eb8c newly factored, we can now move the set and destroy methods out of line. by Chris Lattner · 16 years ago
  91. 206d79e factor a bunch of common code out of the ObjCList template class by Chris Lattner · 16 years ago
  92. 35affc0 Greatly simplify the logic in ExplodedGraphImpl::TrimGraph. Now we just do a by Ted Kremenek · 16 years ago
  93. fb15fbf prune #includes by Chris Lattner · 16 years ago
  94. c3e7268 rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is called by Chris Lattner · 16 years ago
  95. 13f6360 rearrange the contents of DeclObjC to be by-class. Fix some 80 column issues by Chris Lattner · 16 years ago
  96. c08ff67 Unbreak Darwin PIC handling; my refactoring yesterday was bogus. by Daniel Dunbar · 16 years ago
  97. 47a5771 more random cleanups, add some fixme's. ObjCCategoryImplDecl really by Chris Lattner · 16 years ago
  98. e0275ff destroy should forward to base class. by Chris Lattner · 16 years ago
  99. 97e84d6 move the @implementation ivar list to being an ObjCList, which prevents by Chris Lattner · 16 years ago
  100. 89d2700 PTH generation: Clear the cleaning bit for literals (whose spellings are cached). by Ted Kremenek · 16 years ago