1. 6795605 move the interace list of @class to use ObjCList. by Chris Lattner · 15 years ago
  2. 63359c8 Fix <rdar://problem/6586239> bitfield constraints not enforced (for ObjC) by Steve Naroff · 15 years ago
  3. 4a323d9 remove a dead list. by Chris Lattner · 15 years ago
  4. 54fefbe add support for amd64-*, patch by Brooks Davis! by Chris Lattner · 15 years ago
  5. 3198be8 ccc: Spell mattr correctly. by Daniel Dunbar · 15 years ago
  6. 4311e45 ccc: Basic translation of gcc subtarget feature options to LLVM by Daniel Dunbar · 15 years ago
  7. c4556d1 ccc: Use toolchain hook for default relocation model value. by Daniel Dunbar · 15 years ago
  8. f8ebb41 Add some stdlib builtins by Daniel Dunbar · 15 years ago
  9. 2073216 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 15 years ago
  10. e881483 switch the interface ivar list from being explicitly managed to using ObjCList. by Chris Lattner · 15 years ago
  11. 0b7ebb3 move more objc destruction out of dtors into Destroy. by Chris Lattner · 15 years ago
  12. 411280e move some objc decl destruction out of dtors into Destroy method. by Chris Lattner · 15 years ago
  13. 779747c Add an example in comments. by Zhongxing Xu · 15 years ago
  14. 8d10cdd Fix potential use of uninitialized variable. by Ted Kremenek · 15 years ago
  15. 1f4a6db A few small tweaks to isConstantInitializer. (No test because this by Eli Friedman · 15 years ago
  16. 8d1d62f Use -verify for consistency. by Eli Friedman · 15 years ago
  17. e8761c8 Add support for * (unary dereference) operator to ExprConstant. by Eli Friedman · 15 years ago
  18. a805135 ccc: Use toolChain arch name instead of looking for arch command line by Daniel Dunbar · 15 years ago
  19. 67762a3 optimize the 'StoredDeclsMap' for the common case where there is by Chris Lattner · 15 years ago
  20. 15423b0 ccc: Store arch name in all toolchains. - No functionality change. by Daniel Dunbar · 15 years ago
  21. da15323 Suppress constant initializer checking when the declaration isn't valid. by Eli Friedman · 15 years ago
  22. 5e187a1 ccc: Give all tools access to the toolchain they are in. by Daniel Dunbar · 15 years ago
  23. 6e656f4 Initialize the Init variable to something reasonable when we emit an by Eli Friedman · 15 years ago
  24. be26570 ExprConstant handling for a couple more cases of pointer-to-int casts by Eli Friedman · 15 years ago
  25. 4f54526 More objc gc's ir-gen fixes. by Fariborz Jahanian · 15 years ago
  26. bdc3d00 make the redeclaration case faster for the common instance of a redeclaration by Chris Lattner · 15 years ago
  27. 7f0be13 80 cols by Chris Lattner · 15 years ago
  28. 9194250 slight code simplifications. by Chris Lattner · 15 years ago
  29. da5c86f Deox and Capitolize. by Mike Stump · 15 years ago
  30. 676f024 map source ranges through macro expansions. Before: by Chris Lattner · 15 years ago
  31. 4451bd9 Fix spacing. by Mike Stump · 15 years ago
  32. ebbbb1b refactor, pass ranges down instead of the whole DiagnosticInfo. by Chris Lattner · 15 years ago
  33. 0bdf178 Add test case for <rdar://problem/6562655>. by Ted Kremenek · 15 years ago
  34. c3cf7b2 Fix crash from <rdar://problem/6562655>: 'init' method only return a receiver alias if the return type is a location. by Ted Kremenek · 15 years ago
  35. 92dd386 replace a dirty hack with a clean solution. Too bad we can't by Chris Lattner · 15 years ago
  36. 33b6f63 retain/release checker: Generate an intermediate simulation node for "leak" by Ted Kremenek · 15 years ago
  37. d0344a4 Fix a long standard problem with clang retaining "too much" sugar by Chris Lattner · 15 years ago
  38. 58e899b Added a new method to GRStmtNodeBuilder to build nodes using an arbitrary by Ted Kremenek · 15 years ago
  39. 2680b5f ProgramPoint::Profile now specially handles PostStmtCustom (hashes on tag and data) so that clients don't need a unique address for the pair itself. by Ted Kremenek · 15 years ago
  40. 08eddd9 pretty printing vector types should print the element type, not just the attribute. by Chris Lattner · 15 years ago
  41. a223cca More objc's gc ir-gen stuff. by Fariborz Jahanian · 15 years ago
  42. 83aa61f GetTypeForDeclarator can return null on error now, handle this. by Chris Lattner · 15 years ago
  43. eeb44ce ccc: Give nicer error when spawning a subprocess fails. by Daniel Dunbar · 15 years ago
  44. dd21164 Extend Evaluate() to fold (int) <pointer type>. by Daniel Dunbar · 15 years ago
  45. b92dac8 Simplify, no functionality change. by Daniel Dunbar · 15 years ago
  46. 640f552 Fix another PTH warning that should not be a note. by Ted Kremenek · 15 years ago
  47. 395c59c Make PTH warnings actual warnings instead of 'notes'. by Ted Kremenek · 15 years ago
  48. b83d287 Add enough checking to ensure that non-constant block literals don't by Mike Stump · 15 years ago
  49. f084663 ccc: Also look for .gch files when seeing if we should auto load a by Daniel Dunbar · 15 years ago
  50. e20de51 Remove IRgen constant emission assumption that LValue APValue results by Daniel Dunbar · 15 years ago
  51. 30c37f4 Change IntExprEvaluator to operate on an APValue not an APSInt. by Daniel Dunbar · 15 years ago
  52. 403bc2b Arguments to unordered comparison builtins may need implicit casts. by Daniel Dunbar · 15 years ago
  53. 81ebbde Add irgen support for the noinline attribute. by Anders Carlsson · 15 years ago
  54. 5bab788 Add sema support for the noinline attribute. by Anders Carlsson · 15 years ago
  55. 0527f0d Update checker build. by Ted Kremenek · 15 years ago
  56. 3f7d995 Add another IntExprEvaluator::Success overload to suck up remained of by Daniel Dunbar · 15 years ago
  57. b66158c fix PR3609, emit: by Chris Lattner · 15 years ago
  58. 167fdc1 Generate the conservative objc gc's API for now. by Fariborz Jahanian · 15 years ago
  59. 79f7f8a Update test case to include a leak that occurs at the place of allocation. by Ted Kremenek · 15 years ago
  60. b1dbf15 retain/release checker: Fix crasher when the leak site is the same expression that allocates an object. by Ted Kremenek · 15 years ago
  61. 0be2ef2 Fix PR3619 by properly considering size modifiers and type quals when by Chris Lattner · 15 years ago
  62. d8895f6 only track integer and pointer values for now. by Zhongxing Xu · 15 years ago
  63. 4b5d486 fix typo by Gabor Greif · 15 years ago
  64. 131eb43 Add IntExprEvaluator::Success method. by Daniel Dunbar · 15 years ago
  65. 6beb165 fix test case by Zhongxing Xu · 15 years ago
  66. 3450a55 add test case. by Zhongxing Xu · 15 years ago
  67. 5ea2ffc Convert the offset to signed before making an ElementRegion with it. It seems by Zhongxing Xu · 15 years ago
  68. 73a1aa0 Update checker build. by Ted Kremenek · 15 years ago
  69. d5d3180 Don't emit K&R unprototyped function definitions as varargs. by Daniel Dunbar · 15 years ago
  70. afa7444 Add Type::getAsFunctionNoProto by Daniel Dunbar · 15 years ago
  71. f823288 only do one DenseMap lookup instead of two (one to find out if there is by Chris Lattner · 15 years ago
  72. ba1bd5c minor simplification. by Chris Lattner · 15 years ago
  73. bd6c800 use early exit to reduce indentation. by Chris Lattner · 15 years ago
  74. d000c9e standardise on bastardised american spelling. by Chris Lattner · 15 years ago
  75. 6858dd3 fix a bug introduced in my previous patch: moving clang headers to the by Chris Lattner · 15 years ago
  76. 60b2837 disable copying and assignment of AttributeList by Chris Lattner · 15 years ago
  77. 8a778d6 fix warning in no-assert mode. by Chris Lattner · 15 years ago
  78. 1c17689 Emit the correct diagnostics when we constant fold an array size to a negative value. by Anders Carlsson · 15 years ago
  79. 005b235 don't new[] an empty array when an AttributeList has by Chris Lattner · 15 years ago
  80. e2f0e96 Make sure to check the value of the constant expression, as suggested by Daniel. by Anders Carlsson · 15 years ago
  81. 232350d Emission of global variable initialializer was broken in rare by Daniel Dunbar · 15 years ago
  82. d3794b8 scan-build now searches for the clang binary in the subdirectory 'cbin'. by Ted Kremenek · 15 years ago
  83. 4d4c50d Handle the GNU void* and function pointer arithmetic extensions for constant expressions as well. by Anders Carlsson · 15 years ago
  84. b52ec74 always search for "builtin" headers at the end of the search path, by Chris Lattner · 15 years ago
  85. 50b587d PR3614: "ignoring nonexistent directory" should print the -isysroot by Chris Lattner · 15 years ago
  86. b4650c1 fix another typo gabor noticed by Chris Lattner · 15 years ago
  87. 8bea7c0 fix a typo gabor noticed by Chris Lattner · 15 years ago
  88. 98f1e1c Add test case for 'nil receiver returns undefined struct value' check. by Ted Kremenek · 15 years ago
  89. 21fe837 Implemented simple check in <rdar://problem/6600344>: When the receiver of a by Ted Kremenek · 15 years ago
  90. eed9cac Fit 80col and fix indentation. by Mike Stump · 15 years ago
  91. 488e25b Fix spacing. by Mike Stump · 15 years ago
  92. bd65cac More codegen for blocks. The type of block literals should be better. by Mike Stump · 15 years ago
  93. 611a8c4 Provide a proper source location when building an implicit dereference. Fixes PR3600 by Douglas Gregor · 15 years ago
  94. c1debf3 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 15 years ago
  95. ccb8f08 testing (reverted) by Howard Hinnant · 15 years ago
  96. 412705b testing by Howard Hinnant · 15 years ago
  97. f6123ca Couple of helpers for objc's gc attributes. No change in functionality. by Fariborz Jahanian · 15 years ago
  98. 9b76143 Make error-message check platform-agnostic by Douglas Gregor · 15 years ago
  99. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 15 years ago
  100. d559792 retain/release checker: Place the leak diagnostic after the last statement that by Ted Kremenek · 15 years ago