1. 4d26b43 Fix up EmitMemberInitializer to handle many more cases. by Eli Friedman · 15 years ago
  2. 39f36e3 Testcase for dynamic_cast. by Mike Stump · 15 years ago
  3. 1db5345 Make member initializers for union members work correctly. by Eli Friedman · 15 years ago
  4. bbd755a Update test, I don't know why this changed but seems innocuous. by Daniel Dunbar · 15 years ago
  5. 6d10ac9 Implement a few more cases for copy constructor synthesis. by Eli Friedman · 15 years ago
  6. a439e6f Repair broken FindCompositePointerType. Correct early termination condition. Get CVR qualifiers from canonical types. Traverse collected qualifiers in reverse order on rebuilding the pointer, so that we don't swap inner and outer qualifiers. That last one fixes PR5509. by Sebastian Redl · 15 years ago
  7. 912b662 Fix members to be public. by Mike Stump · 15 years ago
  8. 333dfe9 Make bots happy. by Mike Stump · 15 years ago
  9. 1a3c75f Fix PR5488: special-case the overloaded arrow operator so that we don't try to by Eli Friedman · 15 years ago
  10. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  11. 2a70e94 Fix spelling for target triplet. by Mike Stump · 15 years ago
  12. eef22ef Parameterize the constant-generating macros in stdint.h with new built-in by Ken Dyck · 15 years ago
  13. 083e306 Try and fix buildbot issue. by Mike Stump · 15 years ago
  14. 8dfa2b3 Fix a couple of cases where we weren't generating the right kind of call by Eli Friedman · 15 years ago
  15. eaea8c4 Implement two-argument form of delete operator. by Eli Friedman · 15 years ago
  16. 5e6214b Fix test on Linux. by Eli Friedman · 15 years ago
  17. 7f92f03 Add constant evaluation for comma operator with floating-point operand. Fixes by Eli Friedman · 15 years ago
  18. 1f126bd Deallocation functions must also be static. by Anders Carlsson · 15 years ago
  19. 67bf2e7 allocation functions are always static. by Anders Carlsson · 15 years ago
  20. 333b2a7 Fix linux buildbots. by Mike Stump · 15 years ago
  21. f549e89 Finish off zero check for typeid(*p) so that it will do a __cxa_bad_typeid. by Mike Stump · 15 years ago
  22. 5072430 If we find a deallocation function in the class scope, but it is a placement function we should not look for a deallocation function in the global scope. by Anders Carlsson · 15 years ago
  23. ab15d0e When performing a static downcast as part of a static_cast, make sure by Douglas Gregor · 15 years ago
  24. c07a494 Don't gratuitously mark the default constructors of base or member initializers as used by Douglas Gregor · 15 years ago
  25. 891fdae When adding the underlying declaration of a decl to a lookup-results by Douglas Gregor · 15 years ago
  26. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  27. 593564b When looking for operator() to type-check a call to an object of class by Douglas Gregor · 15 years ago
  28. a8285a8 Finish off support for typeinfo generation for classes. by Mike Stump · 15 years ago
  29. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  30. 79cbc7d Add an internal CreateRecordDecl that will create a CXXRecordDecl when compiling C++ and a RecordDecl otherwise. by Anders Carlsson · 15 years ago
  31. a8a1e3d Always build a builtin operator expression for the __extension__ unary operator. by Anders Carlsson · 15 years ago
  32. 658e812 Handle CK_BitCast in EmitCastLValue. by Anders Carlsson · 15 years ago
  33. a82e4ae - Have TryStaticImplicitCast set the cast kind to NoOp when binding a reference. CheckReferenceInit already inserts implicit casts to the necessary types. This fixes an assertion in CodeGen for some casts and brings a fix for PR5453 close, if I understand that bug correctly. by Sebastian Redl · 15 years ago
  34. 5b6117a Canonicalize the type before trying to create a debug type. by Anders Carlsson · 15 years ago
  35. 266cc53 Improve test to make sure -fixit is really working. by Daniel Dunbar · 15 years ago
  36. 55f9bdd Avoid assert-crash in a case where the expression passed to EmitConstantExpr by Eli Friedman · 15 years ago
  37. f70b24e Make __func__ and friends work correctly within the initializer for a static by Eli Friedman · 15 years ago
  38. 3e42ffd PR5462: Don't run off the edge of the argument array for vararg handling by Eli Friedman · 15 years ago
  39. 73dd768 Update FixIt tests to make it more obvious they use a separate mode. by Daniel Dunbar · 15 years ago
  40. 2f00552 Fix a couple of tests. by Eli Friedman · 15 years ago
  41. ea9a208 PR5483: Generate missing form of destructor when it is virtual. (Someone by Eli Friedman · 15 years ago
  42. 49e2b8e Fix for PR5489: don't skip the complete type requrirement for variable by Eli Friedman · 15 years ago
  43. 19aeac6 When type-checking a static cast (or the static_cast part of a C-style by Douglas Gregor · 15 years ago
  44. ba69b3c Fix broken tests, exposed by improved -verify. by Daniel Dunbar · 15 years ago
  45. 0ba63ea Diagnose ambiguity of operator delete and operator delete[]. Sebastian, please review. by Anders Carlsson · 15 years ago
  46. 370e538 Handle CXXDefaultArgExprs in EmitLValue. Fixes PR5484. by Anders Carlsson · 15 years ago
  47. 66724ea If we attempt to add a constructor template specialization that looks by Douglas Gregor · 15 years ago
  48. fd47648 Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this by Douglas Gregor · 15 years ago
  49. 15755cb Template argument deduction of a non-type template parameter from a by Douglas Gregor · 15 years ago
  50. cad84b7 A constructor template cannot be instantiated to a copy by Douglas Gregor · 15 years ago
  51. 534ba90 Code gen. For virtual destructor call on array objects (still part of pr5472). by Fariborz Jahanian · 15 years ago
  52. 22efb85 More VTT and constructor vtable testcases from recent work. by Mike Stump · 15 years ago
  53. 513225f Add more testcase for construction vtables and VTTs. by Mike Stump · 15 years ago
  54. 2cdcbdb Add some more VTT testcases. by Mike Stump · 15 years ago
  55. 64241fc Obvious fix for PR5474. by Eli Friedman · 15 years ago
  56. c360775 Remove test case's dependency on header file. by Ted Kremenek · 15 years ago
  57. c764d4b Add two new test cases for the Malloc/Free checker. Both have to do with by Ted Kremenek · 15 years ago
  58. ba93087 Add test case that shows a leak we don't catch. by Ted Kremenek · 15 years ago
  59. 9326c56 Add a testcase for the recent VTT work. by Mike Stump · 15 years ago
  60. 72c2153 Code gen for arrady delete operator. Fixes pr5472. by Fariborz Jahanian · 15 years ago
  61. bb62dcb Add test for expr.delete p5, with a FIXME. by Daniel Dunbar · 15 years ago
  62. a660440 This falls into the category of stupid pet tricks. I hate to do this, by Mike Stump · 15 years ago
  63. 8382cf5 Add clang-cc option "--analyzer-experimental-internal-checks". This by Ted Kremenek · 15 years ago
  64. 79b680e When performing copy initialization (= "implicit conversion", here) to by Douglas Gregor · 15 years ago
  65. 4b3cbea Don't bind arguments to temporaries if the argument has a reference type. by Anders Carlsson · 15 years ago
  66. fc7ac8f Malloc checker basically works now. by Zhongxing Xu · 15 years ago
  67. 03d8ed4 Fix two bugs with temporaries: by Anders Carlsson · 15 years ago
  68. b0069ee Fix a code gen bug in i386-apple-darwin (objc fragile abi), sending by Fariborz Jahanian · 15 years ago
  69. caddba0 Recognize (and check) pointer-to-member template arguments that are by Douglas Gregor · 15 years ago
  70. 231edff When instantiating a reference to a non-type template parameter of pointer to by Douglas Gregor · 15 years ago
  71. fb898e1 When comparing template parameter lists, distinguish between three cases: by Douglas Gregor · 15 years ago
  72. dcdd2a0 Generalize stdint.h for non-8-bit-multiple types, patch by Ken Dyck! by Chris Lattner · 15 years ago
  73. 9184646 do not store wchar/char16/char32/intmax width/alignment info by Chris Lattner · 15 years ago
  74. 1ea5294 Fix PCH/preprocess test to be more useful, and unbreak -E mode with implicit by Daniel Dunbar · 15 years ago
  75. 8b13c08 Improve recovery in a wonky case where one tries to specialize a by Douglas Gregor · 15 years ago
  76. 010c3f5 Fix test portability. by Daniel Dunbar · 15 years ago
  77. c8d8ac5 Add <foo> = [<bar> nextObject] to the -Widiomatic-parentheses category, by John McCall · 15 years ago
  78. eaf75f4 Remove an overly-eager assertion when replacing tokens with an by Douglas Gregor · 15 years ago
  79. db0d4b7 Template argument deduction for template template parameters. This by Douglas Gregor · 15 years ago
  80. 8406aed Fix PR 5422: handle lvalue results when evaluating 'based' ptrtoints as part of by John McCall · 15 years ago
  81. f42d74f Make test more platform independent. by Fariborz Jahanian · 15 years ago
  82. 1f2fcee Make test more platform independent (per Sebastian's comment). by Fariborz Jahanian · 15 years ago
  83. 7ca8b06 writable atomic property's setter/getter must be in 'lock' step of by Fariborz Jahanian · 15 years ago
  84. f35f828 Improve diagnostics when a default template argument does not match by Douglas Gregor · 15 years ago
  85. 9148c3f Before checking a template template argument against its corresponding by Douglas Gregor · 15 years ago
  86. e8b31cc Value initialize non-class array members in ctor's by Fariborz Jahanian · 15 years ago
  87. ab6d622 Split buffer overflow test case into two test cases, removing out logic that was commented out. by Ted Kremenek · 15 years ago
  88. 9106ef7 Instantiation of template template parameters for nested templates, e.g., by Douglas Gregor · 15 years ago
  89. 7bb87fc Fix speculative parsing of dependent template names in by Douglas Gregor · 15 years ago
  90. d694485 Add undefined array subscript checker. by Zhongxing Xu · 15 years ago
  91. 58e689f Reimplement out-of-bound array access checker with the new checker interface. by Zhongxing Xu · 15 years ago
  92. de7d800 CastToStructChecker: use 'isStructureType()' instead of 'isRecordType()' to determine if a pointer is casted to a struct pointer. This fixes an observed false positive when a value is casted to a union. by Ted Kremenek · 15 years ago
  93. 131c981 And now a test fix in +Asserts mode, which I broke. by Daniel Dunbar · 15 years ago
  94. 47d1e82 Fix some tests in -Asserts mode. - FileCheck is a *huuuuge* improvement here. by Daniel Dunbar · 15 years ago
  95. a52ef08 Apparently the following idiom is specifically encouraged: by John McCall · 15 years ago
  96. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  97. f7f3d0d Create a new Scope when parsing a declaration with a C++ scope specifier. by John McCall · 15 years ago
  98. b03bfa5 Diagnose illegally typed operator new/new[]. by Fariborz Jahanian · 15 years ago
  99. 7f1de45 Fix for PR5454: make sure to use the right block as the predecessor in the by Eli Friedman · 15 years ago
  100. dfcaf06 Make -Wsemicolon-before-method-body opt-in (and part of -Wextra). Addresses <rdar://problem/7381735>. by Ted Kremenek · 15 years ago