1. 273dce4 add support for amd64-*, patch by Brooks Davis! by Chris Lattner · 16 years ago
  2. 9408eb1 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 16 years ago
  3. 922132e switch the interface ivar list from being explicitly managed to using ObjCList. by Chris Lattner · 16 years ago
  4. 3e27e63 move more objc destruction out of dtors into Destroy. by Chris Lattner · 16 years ago
  5. ae53888 move some objc decl destruction out of dtors into Destroy method. by Chris Lattner · 16 years ago
  6. 6d3f324 Add an example in comments. by Zhongxing Xu · 16 years ago
  7. 3dc50ed A few small tweaks to isConstantInitializer. (No test because this by Eli Friedman · 16 years ago
  8. dbd0a9b Add support for * (unary dereference) operator to ExprConstant. by Eli Friedman · 16 years ago
  9. 77820d5 optimize the 'StoredDeclsMap' for the common case where there is by Chris Lattner · 16 years ago
  10. f4756c2 Suppress constant initializer checking when the declaration isn't valid. by Eli Friedman · 16 years ago
  11. 442959a Initialize the Init variable to something reasonable when we emit an by Eli Friedman · 16 years ago
  12. 0366a81 ExprConstant handling for a couple more cases of pointer-to-int casts by Eli Friedman · 16 years ago
  13. 4d41b95 More objc gc's ir-gen fixes. by Fariborz Jahanian · 16 years ago
  14. ba589d4 make the redeclaration case faster for the common instance of a redeclaration by Chris Lattner · 16 years ago
  15. 5360207 80 cols by Chris Lattner · 16 years ago
  16. 265f01d slight code simplifications. by Chris Lattner · 16 years ago
  17. fdb4f48 Deox and Capitolize. by Mike Stump · 16 years ago
  18. 3272e92 map source ranges through macro expansions. Before: by Chris Lattner · 16 years ago
  19. f3aafd6 Fix spacing. by Mike Stump · 16 years ago
  20. ec52b7d refactor, pass ranges down instead of the whole DiagnosticInfo. by Chris Lattner · 16 years ago
  21. 802cfc7 Fix crash from <rdar://problem/6562655>: 'init' method only return a receiver alias if the return type is a location. by Ted Kremenek · 16 years ago
  22. 0b53af2 replace a dirty hack with a clean solution. Too bad we can't by Chris Lattner · 16 years ago
  23. 876d8df retain/release checker: Generate an intermediate simulation node for "leak" by Ted Kremenek · 16 years ago
  24. 2bd4a5a Fix a long standard problem with clang retaining "too much" sugar by Chris Lattner · 16 years ago
  25. a11044e Added a new method to GRStmtNodeBuilder to build nodes using an arbitrary by Ted Kremenek · 16 years ago
  26. 07e928e pretty printing vector types should print the element type, not just the attribute. by Chris Lattner · 16 years ago
  27. bbd4ca9 More objc's gc ir-gen stuff. by Fariborz Jahanian · 16 years ago
  28. 2175947 GetTypeForDeclarator can return null on error now, handle this. by Chris Lattner · 16 years ago
  29. c9967f9 Extend Evaluate() to fold (int) <pointer type>. by Daniel Dunbar · 16 years ago
  30. 6dda4ba Simplify, no functionality change. by Daniel Dunbar · 16 years ago
  31. e49899d Fix another PTH warning that should not be a note. by Ted Kremenek · 16 years ago
  32. 2720abc Make PTH warnings actual warnings instead of 'notes'. by Ted Kremenek · 16 years ago
  33. ae93d65 Add enough checking to ensure that non-constant block literals don't by Mike Stump · 16 years ago
  34. 786b146 Remove IRgen constant emission assumption that LValue APValue results by Daniel Dunbar · 16 years ago
  35. f2dc675 Change IntExprEvaluator to operate on an APValue not an APSInt. by Daniel Dunbar · 16 years ago
  36. 5ac4dff Arguments to unordered comparison builtins may need implicit casts. by Daniel Dunbar · 16 years ago
  37. 2157eec Add irgen support for the noinline attribute. by Anders Carlsson · 16 years ago
  38. eb12e78 Add sema support for the noinline attribute. by Anders Carlsson · 16 years ago
  39. 470c0b2 Add another IntExprEvaluator::Success overload to suck up remained of by Daniel Dunbar · 16 years ago
  40. adcfb6d fix PR3609, emit: by Chris Lattner · 16 years ago
  41. 5a0c341 Generate the conservative objc gc's API for now. by Fariborz Jahanian · 16 years ago
  42. 83ec2f9 retain/release checker: Fix crasher when the leak site is the same expression that allocates an object. by Ted Kremenek · 16 years ago
  43. 3f7a8f1 Fix PR3619 by properly considering size modifiers and type quals when by Chris Lattner · 16 years ago
  44. 80ba277 only track integer and pointer values for now. by Zhongxing Xu · 16 years ago
  45. f91896e Add IntExprEvaluator::Success method. by Daniel Dunbar · 16 years ago
  46. bac4910 Convert the offset to signed before making an ElementRegion with it. It seems by Zhongxing Xu · 16 years ago
  47. 3f19784 Don't emit K&R unprototyped function definitions as varargs. by Daniel Dunbar · 16 years ago
  48. 11a31c9 Add Type::getAsFunctionNoProto by Daniel Dunbar · 16 years ago
  49. 33837c5 only do one DenseMap lookup instead of two (one to find out if there is by Chris Lattner · 16 years ago
  50. a15ff6d minor simplification. by Chris Lattner · 16 years ago
  51. 6719b1f use early exit to reduce indentation. by Chris Lattner · 16 years ago
  52. 99a7265 fix a bug introduced in my previous patch: moving clang headers to the by Chris Lattner · 16 years ago
  53. ca8de5d fix warning in no-assert mode. by Chris Lattner · 16 years ago
  54. f768794 Emit the correct diagnostics when we constant fold an array size to a negative value. by Anders Carlsson · 16 years ago
  55. d5c4de7 don't new[] an empty array when an AttributeList has by Chris Lattner · 16 years ago
  56. 3d78d3d Emission of global variable initialializer was broken in rare by Daniel Dunbar · 16 years ago
  57. 4fbb52c Handle the GNU void* and function pointer arithmetic extensions for constant expressions as well. by Anders Carlsson · 16 years ago
  58. 54d2d61 PR3614: "ignoring nonexistent directory" should print the -isysroot by Chris Lattner · 16 years ago
  59. 676c86a fix another typo gabor noticed by Chris Lattner · 16 years ago
  60. 95a9825 Implemented simple check in <rdar://problem/6600344>: When the receiver of a by Ted Kremenek · 16 years ago
  61. 9afab10 Fit 80col and fix indentation. by Mike Stump · 16 years ago
  62. 6d8e573 Fix spacing. by Mike Stump · 16 years ago
  63. d55240e More codegen for blocks. The type of block literals should be better. by Mike Stump · 16 years ago
  64. 8d10349 Provide a proper source location when building an implicit dereference. Fixes PR3600 by Douglas Gregor · 16 years ago
  65. cc59d47 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 16 years ago
  66. 6b68de7 testing (reverted) by Howard Hinnant · 16 years ago
  67. 10d9b11 testing by Howard Hinnant · 16 years ago
  68. 8553458 Couple of helpers for objc's gc attributes. No change in functionality. by Fariborz Jahanian · 16 years ago
  69. 3c3c454 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 16 years ago
  70. e033674 retain/release checker: Place the leak diagnostic after the last statement that by Ted Kremenek · 16 years ago
  71. 9c4e2fa fariborz already fixed this. by Chris Lattner · 16 years ago
  72. 7427854 Remove unused variable. by Ted Kremenek · 16 years ago
  73. 323207b Remove logic for computing 'display hint'. by Ted Kremenek · 16 years ago
  74. d9b85c3 minor name changes, no functionality change. by Chris Lattner · 16 years ago
  75. b7d9c9e More fun with retain checker diagnostics: by Ted Kremenek · 16 years ago
  76. 18b5a9a fix some subtle bugs handling the mix of cvr qualifiers, addr spaces, by Chris Lattner · 16 years ago
  77. 7b7f4f4 Add anti-FIXME. by Daniel Dunbar · 16 years ago
  78. bae4b66 i386 ABI: Offset computation in va_arg was incorrect for sizeof(Ty)>4. by Daniel Dunbar · 16 years ago
  79. e90876d Remove pointless backslash by Douglas Gregor · 16 years ago
  80. c25bf6d Downgrade the "excess elements in initializer" errors to warnings *in by Douglas Gregor · 16 years ago
  81. 6311876 x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test. by Daniel Dunbar · 16 years ago
  82. fd3f8da Fix diagnostics bugs when computing ranges for the retain/release checker. by Ted Kremenek · 16 years ago
  83. 1fc4791 rip out __builtin_overload by Chris Lattner · 16 years ago
  84. 181616e HTMLDiagnostics: Always display diagnostics *below* the line in question. by Ted Kremenek · 16 years ago
  85. 7219884 x86_64 ABI: "is passed in regs" computation for va_arg was broken for by Daniel Dunbar · 16 years ago
  86. 6b3cca6 Return true on errors, return true on errors, return true on errors by Douglas Gregor · 16 years ago
  87. 2126bef retain/release checker: We now emit fancy diagnostics telling users about the by Ted Kremenek · 16 years ago
  88. aa57e86 Downgrade complaints about calling unavailable functions to a warning by Douglas Gregor · 16 years ago
  89. b8ca6ff Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 16 years ago
  90. 5b601ff Codegen for int (^bp)(int) = 0; by Mike Stump · 16 years ago
  91. e892c04 __attribute__((aligned)) was being ignored! by Daniel Dunbar · 16 years ago
  92. c61a800 Add Type::isSpecificBuiltinType as a shortcut. by Daniel Dunbar · 16 years ago
  93. f8eb23b Simplify. by Daniel Dunbar · 16 years ago
  94. f6d4472 final string diagnostic issue (that I know about): by Chris Lattner · 16 years ago
  95. be93e79 Next step toward making string diagnostics correct: handle by Chris Lattner · 16 years ago
  96. 29e840e update comment. by Chris Lattner · 16 years ago
  97. 58dd95b retain/release checker: Distinguish in the function summaries between by Ted Kremenek · 16 years ago
  98. 81df846 Fix some issues handling sub-token locations that come from macro expansions. by Chris Lattner · 16 years ago
  99. 31804e1 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 16 years ago
  100. 459da5d tidy up by Chris Lattner · 16 years ago