1. d8383d4 CXXNamedCastExpr is actually an abstract expression. by Zhongxing Xu · 15 years ago
  2. 2b003fd Sink the _GNU_SOURCE definition down into the target configuration, by Douglas Gregor · 15 years ago
  3. 3fb53bd Reword the note we emit when suppressing template instantiation contexts, per John's advice by Douglas Gregor · 15 years ago
  4. 48fb322 The second check point in the old test case was invalid. by Zhongxing Xu · 15 years ago
  5. 5fae1d6 Use const_cast instead of a C cast. Safer, plus it suppresses a gcc warning. by John McCall · 15 years ago
  6. 978b935 Use the right predecessor. by Zhongxing Xu · 15 years ago
  7. 6b85138 Add initial support for C++ delete expr. by Zhongxing Xu · 15 years ago
  8. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 15 years ago
  9. 10dc0f8 Remove an unused parameter from isImplicitlyDefined. by Anders Carlsson · 15 years ago
  10. f3afbea Fix comment to reflect recent code change. by John Thompson · 15 years ago
  11. e542f77 Fix USRs for 'extern' variables declaration in functions/method bodies. by Ted Kremenek · 15 years ago
  12. becc308 Specify linkage for Objective-C declarations. by Ted Kremenek · 15 years ago
  13. 84688f2 Factor some common code out into a separate function. by Anders Carlsson · 15 years ago
  14. 876681e Fixes a code gen. bug by removing an assert. by Fariborz Jahanian · 15 years ago
  15. e5deae9 fix the ?: fixit that ted added to recover properly. by Chris Lattner · 15 years ago
  16. 02418c7 Fix crash on invalid code where a @throw statement is not followed by a ';' by Ted Kremenek · 15 years ago
  17. 5c5db4e change FullSourceLoc to have a *const* SourceManager&, eliminating a const_cast. by Chris Lattner · 15 years ago
  18. e127a0d push some source location information down through the compiler, by Chris Lattner · 15 years ago
  19. b00ab27 Patch to support transparent_union types on by Fariborz Jahanian · 15 years ago
  20. 38caec4 enhance sourcemgr to detect various UTF BOM's and emit a fatal error by Chris Lattner · 15 years ago
  21. 3e79c30 Back out r101911 and see if it makes the bots happy. by Anders Carlsson · 15 years ago
  22. 23402af Remove dead code. by Benjamin Kramer · 15 years ago
  23. 8ab78a7 IRgen: Always use i8 arrays to access union bit-fields. This is ugly, but by Daniel Dunbar · 15 years ago
  24. 4992bdd remove some extraneous qualifiers. by Chris Lattner · 15 years ago
  25. 36fd6be Fix a bug which triggered the assertion I added yesterday. Basically, when we initialize the vtable pointer for a virtual base, and there was another path from the most derived class to another base with the same class type, we would use the wrong base. by Anders Carlsson · 15 years ago
  26. 9dc228a Move code to apply a non-virtual and virtual offset out into a separate function. by Anders Carlsson · 15 years ago
  27. 81d3466 Keep proper source location information for the type in an Objective-C by Douglas Gregor · 15 years ago
  28. a4f0a80 Tip of the day: save before commit. by Benjamin Kramer · 15 years ago
  29. 9e8635a Fix -Wcast-qual warnings. by Benjamin Kramer · 15 years ago
  30. 575cf37 Introduce a limit on the depth of the template instantiation backtrace by Douglas Gregor · 15 years ago
  31. 40ab43b Add test cases. by Zhongxing Xu · 15 years ago
  32. fb97cf2 don't slap noalias attribute on stret result arguments. by Chris Lattner · 15 years ago
  33. 107ccd1 Replace code with a method call. No functionality change. by Zhongxing Xu · 15 years ago
  34. b3b772e Pass the nearest virtual base decl to InitializeVTablePointers. No functionality change right now. by Anders Carlsson · 15 years ago
  35. e12a779 reapply john's patch, he broke mainline again by changing the test. by Chris Lattner · 15 years ago
  36. 2692d82 Assert that the path from the derived to the base class in CodeGenFunction::GetAddressOfBaseClass is not ambiguous. by Anders Carlsson · 15 years ago
  37. 58f9782 Altivec vector literal initializer count mismatch error removed. by John Thompson · 15 years ago
  38. 59fea60 Use GetState() to get the possible cleaned state. by Zhongxing Xu · 15 years ago
  39. 5e23597 grr, lit only hates me, not the rest of the world. by Chris Lattner · 15 years ago
  40. 56f3cc6 revert r101863, whcih is causing Sema/altivec-init.c to fail on a ton by Chris Lattner · 15 years ago
  41. 820cbbb Altivec vector literal initializer count mismatch error removed. by John Thompson · 15 years ago
  42. b17b1b3 Improve handling of CXXNewExpr. by Zhongxing Xu · 15 years ago
  43. 9c82afc Restore r101841 without modification. Also mark 'operator delete' as used for by John McCall · 15 years ago
  44. 3609432 Revert r101841 and follow-up. by John McCall · 15 years ago
  45. d764d65 add __builtin_[r]index. Perhaps all LIBBUILTIN's should get by Chris Lattner · 15 years ago
  46. bc34139 Use __SIZE_TYPE__ as suggested by dgregor. by John McCall · 15 years ago
  47. af5ece5 Don't bother looking for (or diagnosing problems with) the 'operator delete' by John McCall · 15 years ago
  48. c077e45 Do not diagnose unused-parameter errors in template instantiations. We by Douglas Gregor · 15 years ago
  49. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 15 years ago
  50. 63c323d Only suppress the "extern variable has an initializer" warning when the extern entity being initialized is const. by Douglas Gregor · 15 years ago
  51. 41b1d6b Disable the "'extern' variable has an initializer" warning in C++, by Douglas Gregor · 15 years ago
  52. 8d8ab74 AST: Dump ASTRecordLayout objects when they are created with -fdump-record-layouts. by Daniel Dunbar · 15 years ago
  53. 2e7b7c2 IRgen: Kill unused function and move the type match assert to after record dumping. by Daniel Dunbar · 15 years ago
  54. 6fbe3eb add a PPCallback handler for a skipped #include, patch by Zhanyong Wan! by Chris Lattner · 15 years ago
  55. ed46442 When normal name lookup to disambiguiate an Objective-C message send by Douglas Gregor · 15 years ago
  56. d7174f2 More tests for Objective-C-related name lookup weirdness. Yes, it's by Douglas Gregor · 15 years ago
  57. c5e869b Add a testcase for PR6501 (too many/too few arguments to a function call). by Eric Christopher · 15 years ago
  58. 794afcb Check for darwin befoer cheking for version. (related to radar 7866951). by Fariborz Jahanian · 15 years ago
  59. 765bb81 Make this test darwin10 specific. by Fariborz Jahanian · 15 years ago
  60. 00522ad Temporarily XFAIL this test on windows. by Eric Christopher · 15 years ago
  61. 5e89655 Remove the argument number from the constant integer diagnostic. by Eric Christopher · 15 years ago
  62. 63326a5 Some renaming of methods, fixes typo (related to PR6769). by Fariborz Jahanian · 15 years ago
  63. c220a18 When searching for code-completion and typo-correction candidates, by Douglas Gregor · 15 years ago
  64. 776dbf9 Force clang to produce legacy api for messaging by Fariborz Jahanian · 15 years ago
  65. b1af4c8 Add comment explaning the use of c99 inline in c++. by Rafael Espindola · 15 years ago
  66. cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 15 years ago
  67. cb7464a Move all C++ expression evaluation logic into its own file. by Zhongxing Xu · 15 years ago
  68. 856c6bc Analyzer: add support for CXXNewExpr. by Zhongxing Xu · 15 years ago
  69. d901da5 Don't just emit ivar metadata - emit CORRECT ivar metadata. (GNU runtime) by David Chisnall · 15 years ago
  70. 7f63cb0 Fix emitting ivar metadata for synthesized ivars and some 64-bit fixes. (GNU runtime) by David Chisnall · 15 years ago
  71. b8cab18 If a method is virtual and the class key function is in another file, emit the method as available_externally. by Rafael Espindola · 15 years ago
  72. 65ad5a4 Local static variables must be available module-wise by Fariborz Jahanian · 15 years ago
  73. a75b71f recommit r101568 to fix PR6766 as a side-effect, remove two FIXMEs now fixed by Nuno Lopes · 15 years ago
  74. a77eaa9 Make sure that we don't visit redeclarations of nested classes while by Douglas Gregor · 15 years ago
  75. c1c9df7 C++ [namespace.memdef]p3 only applies when the friend is not named via by Douglas Gregor · 15 years ago
  76. d13ada1 tests: Don't force triple in x86-builtin-palignr test, this test should be by Daniel Dunbar · 15 years ago
  77. b6eee07 Bail out early to avoid comparing the internals of two conversion sequences of by Benjamin Kramer · 15 years ago
  78. 66821b5 When performing reference initialization for the purposes of overload by Douglas Gregor · 15 years ago
  79. 9dc58bb Binding a reference to an rvalue is a direct binding in C++0x but not in C++03. by Douglas Gregor · 15 years ago
  80. 630eb01 Fix the access checking of function and function template argument types, by Chandler Carruth · 15 years ago
  81. 2559a70 When checking the copy constructor for the optional copy during a by Douglas Gregor · 15 years ago
  82. 523d46a In C++98/03, when binding a reference to an rvalue of by Douglas Gregor · 15 years ago
  83. 389980e Add testcase that I forgot for r101667 for gnu-keywords. by Chandler Carruth · 15 years ago
  84. 422bae7 Allow the 'ibaction' attribute to be attached to method declarations (and not issue a warning). by Ted Kremenek · 15 years ago
  85. 153b3ba Do not consider explicit constructors when performing a copy to a by Douglas Gregor · 15 years ago
  86. 6ba3815 Simplify wide bit-field layout in CGRecordLayoutBuilder, and also fix a bug where assigning to a bit-field member would overwrite other parts of the struct. by Anders Carlsson · 15 years ago
  87. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 15 years ago
  88. 4803535 Fix an assert when assigning a boolean value to a bitfield of type _Bool. by Anders Carlsson · 15 years ago
  89. d62328e Unnamed bit-fields in a union should be laid out with a type that doesn't affect alignment. by Anders Carlsson · 15 years ago
  90. 8666446 Factor union field layout code out into a separate function. No functionality change. by Anders Carlsson · 15 years ago
  91. de9f153 If a wide bit-field is inside a union its offset should always be 0. by Anders Carlsson · 15 years ago
  92. eb5d7b7 Add support for '-fgnu-keywords' and '-fasm' to Clang's driver. They are not by Chandler Carruth · 15 years ago
  93. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 15 years ago
  94. 63e9c0d Prevent accidental in-source builds with CMake, and detect when there are by Chandler Carruth · 15 years ago
  95. afd5eda fix integrated assembler with i386 objc code. by Chris Lattner · 15 years ago
  96. fbf0561 Fix a bug where we would sometimes incorrectly mark an vtable function as unused. by Anders Carlsson · 15 years ago
  97. f6cde77 Add printName to DeclarationName which prints the human-readable name on a by Benjamin Kramer · 15 years ago
  98. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 15 years ago
  99. 7a22f02 revert r101568, which miscompiles this testcase, distilled from ldecod: by Chris Lattner · 15 years ago
  100. fb36d21 Driver: Add missing claim() for -mllvm options. by Daniel Dunbar · 15 years ago