1. 28329e5 When pulling apart an initializer that involves a CXXConstructExpr, do by Douglas Gregor · 14 years ago
  2. f7353c0 Make sure that we have File IDs for all of the unsaved files before we by Douglas Gregor · 14 years ago
  3. 528adb1 Allow conversion of qualified Class type to unqualified by Fariborz Jahanian · 14 years ago
  4. e3e7d4e XFAIL the -nostdinc++ test on Windows; it doesn't look like we even have the notion of separate C and C++ paths there by Douglas Gregor · 14 years ago
  5. 0266898 Control warnings about GNU extensions with -Wgnu, which has a subgroup by Douglas Gregor · 14 years ago
  6. 4c2bcad Implement support for -nostdc++. Fixes PR6446. by Douglas Gregor · 14 years ago
  7. f3c0bd5 Improve diagnostics when ivar added to class extension (radar 6812436). by Fariborz Jahanian · 14 years ago
  8. 036ada2 Silently drop dependent friend function template specializations, by Douglas Gregor · 14 years ago
  9. 9ff659b Change two class forward declarations to struct forward declarations, silencing a Clang warning by Douglas Gregor · 14 years ago
  10. ceb43b6 Code gen for multi-dimensional dynamic allocations. Fixes PR6641. by Fariborz Jahanian · 14 years ago
  11. ccd83d7 More vtable improvements. We now compute and keep track of all vtable related information which avoids computing the same vtable layout over and over. by Anders Carlsson · 14 years ago
  12. c1b621d Walk out of enums when determining effective context. by John McCall · 14 years ago
  13. 5fd378b Correct that last fixit: if the user wrote by John McCall · 14 years ago
  14. 7ad650f Support friend function specializations. by John McCall · 14 years ago
  15. 2eef829 When a declaration of a function is missing an exception specification by Douglas Gregor · 14 years ago
  16. 5eea876 Use getNamedGlobal instead of getGlobalVariable. (Fixes self-host). by Anders Carlsson · 14 years ago
  17. 1a37d0a Make the license header in smmintrin.h match the other SSE headers. by Anders Carlsson · 14 years ago
  18. 0c01d18 Implement a framework for the delay of arbitrary diagnostics within by John McCall · 14 years ago
  19. b5b2ccb When performing name lookup for the allocation or deallocation by Douglas Gregor · 14 years ago
  20. 5c6c1d9 More vtable work; preparations for moving over to the new vtable layout code (finally). by Anders Carlsson · 14 years ago
  21. 05030bb Each non-local class instantiation is its own local instantiation by Douglas Gregor · 14 years ago
  22. f532f3b Remove old thunks code. by Anders Carlsson · 14 years ago
  23. a418147 Make sure to properly track the anonymous namespace that lives inside by Douglas Gregor · 14 years ago
  24. d63fed4 Flip the switch and use the new vtable layout code for thunks by default. Add a thunks.cpp test. by Anders Carlsson · 14 years ago
  25. 519c328 Add CodeGenFunction::GenerateThunk and implement it. by Anders Carlsson · 14 years ago
  26. 13d6898 Minor cleanup. by Anders Carlsson · 14 years ago
  27. 6c22c8e Remove parts of virt.cpp by Anders Carlsson · 14 years ago
  28. 7b2fc9d Implement computation of the final overriders for each virtual by Douglas Gregor · 14 years ago
  29. a2a87c9 Add some missing files to xcode project by Fariborz Jahanian · 14 years ago
  30. f075b22 revert 99311. Looks like it broke darwin bootstrap. by Rafael Espindola · 14 years ago
  31. f921a48 Improve diagnostic for @property/ivar type mismatch by including the types of the by Ted Kremenek · 14 years ago
  32. 5fb12c6 Avoid producing implicit methods when we have a explicit template instantiation by Rafael Espindola · 14 years ago
  33. 707ea28 Code gen for compound assignment of complex by Fariborz Jahanian · 14 years ago
  34. 7986ad5 More work on thunks - don't assert if there's a variable with the same name as the thunk already. by Anders Carlsson · 14 years ago
  35. dfb1eb2 Patch to implement code gen. use of compound assignent on by Fariborz Jahanian · 14 years ago
  36. 19879c9 More thunks scaffolding. by Anders Carlsson · 14 years ago
  37. fbf6ed4 More work on thunks. by Anders Carlsson · 14 years ago
  38. 9de672f When recovering from a qualified typedef name, don't clear out the by Douglas Gregor · 14 years ago
  39. b4e4c96 Move ThunkInfo as well. by Anders Carlsson · 14 years ago
  40. 80d8d7d Move ReturnAdjustment and ThisAdjustment out into CGVtable.h by Anders Carlsson · 14 years ago
  41. bc52595 Ignore a more comprehensive set of gcc-special format attributes. by Duncan Sands · 14 years ago
  42. 8e18c1b Bind the constructed object value to CXXConstructExpr. by Zhongxing Xu · 14 years ago
  43. 13b7639 update CMakeLists.txt by Zhongxing Xu · 14 years ago
  44. bd2b208 Clear the return expr GDM after using it. by Zhongxing Xu · 14 years ago
  45. 7b71c19 Add a AggExprVisitor class. It contains lots of boiler by Zhongxing Xu · 14 years ago
  46. 02e2459 Use the canonical destructor, which fixes the self-host build. Thanks to Eli for noticing. by Anders Carlsson · 14 years ago
  47. 41ca134 merge line. by Zhongxing Xu · 14 years ago
  48. 42444fb Frontend: Don't free the CompilerInstance or FrontendActions when running under by Daniel Dunbar · 14 years ago
  49. dbd8209 PPCallbacks: Add hook for reaching the end of the main file, and fix DependencyFile to not do work in its destructor. by Daniel Dunbar · 14 years ago
  50. d9e0c0f Since we now may have basicblocks with the same block is in different function, by Zhongxing Xu · 14 years ago
  51. ee5ab9f Baby steps towards making thunks be emitted from the new vtable layout code. by Anders Carlsson · 14 years ago
  52. 3a5df3f Some renames. by Anders Carlsson · 14 years ago
  53. 7270ee4 Always emit associated thunks when emitting the function itself. Remove getVtableAddressPoint, it's not used. by Anders Carlsson · 14 years ago
  54. 13189d0 Rename MaybeEmitVtable to EmitVTableRelatedData in preparation for making it emit thunks as well. by Anders Carlsson · 14 years ago
  55. af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 14 years ago
  56. c263704 For forward-declared static inline functions, delay CFG-based warnings until we by Ted Kremenek · 14 years ago
  57. 452b84d Tweak null dereference diagnostics to give clearer diagnostics when by Ted Kremenek · 14 years ago
  58. d064fdc Only perform CFG-based warnings on 'static inline' functions that by Ted Kremenek · 14 years ago
  59. 22f757b Set the relevent attributes declared in class extension by Fariborz Jahanian · 14 years ago
  60. b0f65ca A fixed version of r99174 which also includes a test that we emit vtables when by Rafael Espindola · 14 years ago
  61. 0647a7b Disable the emission of frontend warnings (not errors) under --analyze. by Ted Kremenek · 14 years ago
  62. 12182a0 Improve the diagnostics for the UndefinedAssignmentChecker when an by Ted Kremenek · 14 years ago
  63. f6728fc Comment the reasons for the strange little dance we do with the main file name for debug information by Douglas Gregor · 14 years ago
  64. 3c98902 (re)implement PR6542, accepting and discarding the __gcc_tdiag__ by Chris Lattner · 14 years ago
  65. a87d477 merge some tests. by Chris Lattner · 14 years ago
  66. 6580d5b rename test by Chris Lattner · 14 years ago
  67. 8149a57 Diagnose miuse of property dot-syntax instead of crashing. (radar 7634653). by Fariborz Jahanian · 14 years ago
  68. b1332d7 merge two tests. by Chris Lattner · 14 years ago
  69. 61784e3 rename test. by Chris Lattner · 14 years ago
  70. 6972512 revert r98661, gcc_tdiag is not an attribute (PR6542). by Chris Lattner · 14 years ago
  71. 1a6154c move a test to a more appropriate directory by Chris Lattner · 14 years ago
  72. bca5d37 More work on thunks; almost there now. by Anders Carlsson · 14 years ago
  73. 01f1bfc Fixes access rues for ivars declared in class implementations (radar 7547942). by Fariborz Jahanian · 14 years ago
  74. f7c7008 hopefully fix this on non-sse2 hosts. Shouldn't an apple-darwin10 by Chris Lattner · 14 years ago
  75. fda0558 Test for my last patch. by Fariborz Jahanian · 14 years ago
  76. 3bfacdf More clean up of ivars which are either in class extensions and by Fariborz Jahanian · 14 years ago
  77. 909e6aa Sort calls to add_clang_library() by Kovarththanan Rajaratnam · 14 years ago
  78. 1bddbcb fix PR6658: inline isn't a keyword in C89 mode, use __inline__ instead. by Chris Lattner · 14 years ago
  79. 89db145 revert r99174. It caused PR6677. Will try to debug why tonight. by Rafael Espindola · 14 years ago
  80. 87e0ac8 Add less than operators to ThisAdjustment, ReturnAdjustment and ThunkInfo. Sort the thunks before dumping them. by Anders Carlsson · 14 years ago
  81. 09daa50 Improve dumping of thunks. by Anders Carlsson · 14 years ago
  82. 2ca54fe Use the cursor's ASTContext rather than the ASTContext computed from a by Douglas Gregor · 14 years ago
  83. 9e2dac9 Fix a thinko and a typo in the delayed-diagnostic code. by Douglas Gregor · 14 years ago
  84. 2539421 We want to add all thunks, not just 'this' adjustment thunks. by Anders Carlsson · 14 years ago
  85. 24f7e36 Use DEFINE_SYMBOL property to control dllexport/dllimport by Kovarththanan Rajaratnam · 14 years ago
  86. 93ea5cb Introduce the notion of a single "delayed" diagnostic into the by Douglas Gregor · 14 years ago
  87. c24d721 When handling a TSK_ExplicitInstantiationDefinition after a by Rafael Espindola · 14 years ago
  88. 053f4bd -Wshadow should only warn about parameter declarations when we're by John McCall · 14 years ago
  89. 48ad609 Add very limited support for GCC's '-B' flag. This allows us to support unusual by Chandler Carruth · 14 years ago
  90. 0162070 Fix PR6618. by Rafael Espindola · 14 years ago
  91. 2d52be5 Keep track of the size/modification time of each file source-location by Douglas Gregor · 14 years ago
  92. 9d734f3 AddThunk should take a const reference. by Anders Carlsson · 14 years ago
  93. 8682bda Fix PR6648 by not creating a temporary with the type of a by Rafael Espindola · 14 years ago
  94. 3e0e41c Delete the new visitor if an old one already exists. by Ted Kremenek · 14 years ago
  95. e1fa096 tests: Mangle '-vg' onto the end of the triple when running under valgrind, so by Daniel Dunbar · 14 years ago
  96. d068aab Don't bother running the analysis for CFG-based warnings if the by Ted Kremenek · 14 years ago
  97. dbdbaaf Refactor CFG-based warnings in Sema to be run by a worked object called AnalysisBasedWarnings. by Ted Kremenek · 14 years ago
  98. 4c8c8e9 Fixed synthesizing properties declared in properties (GNU runtime). by David Chisnall · 14 years ago
  99. ff7f736 Reapply r99024 (but with the memory issue now fixed). by Ted Kremenek · 14 years ago
  100. 1b43102 Check if a BugReporterVisitor has already been added to a BugReporterContext. by Ted Kremenek · 14 years ago