1. 9e8725a Add FIXME for alignments that won't be honored. by Mike Stump · 15 years ago
  2. 7445d55 We can't have ctors in the vtable (right Doug?) :-) by Mike Stump · 15 years ago
  3. 6250921 More work toward having an access method for visible conversion functions. by Fariborz Jahanian · 15 years ago
  4. 0ee33cf Handle CK_DerivedToBase when emitting lvalue casts. by Anders Carlsson · 15 years ago
  5. f4d5eb4 SmallVectorize preprocessor's token cache. Testing shows there is almost never by Benjamin Kramer · 15 years ago
  6. 32baf62 When necessary, null check the base value in GetAddressCXXOfBaseClass. by Anders Carlsson · 15 years ago
  7. 191dfe9 Handle derived-to-base conversion in CGExprScalar::EmitCast, if the cast kind is CK_DerivedToBase. by Anders Carlsson · 15 years ago
  8. 61faec1 Use the correct CastKind for derived-to-base pointer conversions. by Anders Carlsson · 15 years ago
  9. 5d58a1d Whoops, add CGCXXClass.cpp by Anders Carlsson · 15 years ago
  10. 5a0f49e Rename AddressCXXOfBaseClass to GetAddressCXXOfBaseClass. Add a NullCheckValue argument (currently unused). by Anders Carlsson · 15 years ago
  11. 29f898a Add CGCXXClass.cpp. and move CodeGenFunction::AddressCXXOfBaseClass there. by Anders Carlsson · 15 years ago
  12. 18be84c Add support for __block variables with alignment greater than __alignof(void *). by Anders Carlsson · 15 years ago
  13. 7dfa407 For __block variables, cache the LLVM types as well as which LLVM field where the variable is stored. by Anders Carlsson · 15 years ago
  14. 5e7bace Stub out room for ARM APCS ABI implementation (and AAPCS_VFP, although you can't by Daniel Dunbar · 15 years ago
  15. 34d91fd Formatting fixes. by Daniel Dunbar · 15 years ago
  16. ca6408c Change CodeGenModule::ConstructTypeAttributes to return the calling convention by Daniel Dunbar · 15 years ago
  17. 7814e6d Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID by Douglas Gregor · 15 years ago
  18. 48a83b5 Remove unnecessary ASTContext parameters from isMain and isExternC by Douglas Gregor · 15 years ago
  19. af3280f Eliminate FunctionDecl::getBodyIfAvailable by Douglas Gregor · 15 years ago
  20. c7cba15 Fix a crash when generating vtables that contain destructors. by Anders Carlsson · 15 years ago
  21. 6e319f6 Add basic covariant thunk generation support. WIP. by Mike Stump · 15 years ago
  22. 4719f4e When performing name lookup within a class template or class template by Douglas Gregor · 15 years ago
  23. 4f213d3 No need to build the visible conversionfunction list for root class. by Fariborz Jahanian · 15 years ago
  24. 8a9f3fd Set the calling convention based on the CGFunctionInfo. by Daniel Dunbar · 15 years ago
  25. bac7c25 Add CallingConvention argument to CGFunctionInfo. - Currently unused. by Daniel Dunbar · 15 years ago
  26. 5b9bd21 Introduce "DefinedOrUnknownSVal" into the SVal class hierarchy, providing a way by Ted Kremenek · 15 years ago
  27. 5346278 Patch to build visible conversion function list lazily and make its by Fariborz Jahanian · 15 years ago
  28. 52604ab Slight improvement for extern templates, so that an explicit by Douglas Gregor · 15 years ago
  29. bbbcdd9 Alter Action's friend interface to prepare for templated friend declarations and by John McCall · 15 years ago
  30. 389a0e8 Fix use of uninitialized, David please check. by Daniel Dunbar · 15 years ago
  31. 678119a Improve testing for extern temp templates, slightly. We are (properly) suppressing the implicit instantiation of members of extern templates by Douglas Gregor · 15 years ago
  32. 9f18507 Tweak the semantics of FunctionDecl::isOutOfLine to consider an by Douglas Gregor · 15 years ago
  33. d5d6778 Add test for dependent PredefinedExprs. by Sam Weinig · 15 years ago
  34. 8664ad5 Undid my yesterday patch which is not needed with an upcoming patch. by Fariborz Jahanian · 15 years ago
  35. 6cc1518 Cleanup and test C++ default arguments. Improvements include: by Douglas Gregor · 15 years ago
  36. 4111181 Just ignore friend templates for now so we won't crash. by Anders Carlsson · 15 years ago
  37. 039e6a1 Fixes a regression in objc GC layout bitmap involving block pointer ivars. by Fariborz Jahanian · 15 years ago
  38. ea19b2f Update CMakeLists. by Benjamin Kramer · 15 years ago
  39. 9cc7807 Track a class template specialization's point of instantiation separately by John McCall · 15 years ago
  40. 136a698 When stringizing a NamedDecl for a diagnostic, treat the template by John McCall · 15 years ago
  41. a4d3282 Update prototype. by Daniel Dunbar · 15 years ago
  42. ed90c4e Fix PR4878 for real. by Anders Carlsson · 15 years ago
  43. c4e7019 Support elaborated dependent types and diagnose tag mismatches. by John McCall · 15 years ago
  44. 66847a2 Start to add a new transfer function that inlines callee. To be continued. by Zhongxing Xu · 15 years ago
  45. cce6ebc Test commit by Sam Weinig · 15 years ago
  46. 773f397 Instantiate PredefinedExprs correctly. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  47. f4aa4f61 Swizzle the target triple based on -mthumb, and update clang-cc to recognize by Daniel Dunbar · 15 years ago
  48. 1da83fa Update this test to expect the "inbounds" keyword, which LLVM's constant by Dan Gohman · 15 years ago
  49. 043cad2 Diagnose VLAs as an error in C++. by Douglas Gregor · 15 years ago
  50. 8b26cbd Make sure ObjCInterfaceDecl's that are forward declared always contain a valid location. by Steve Naroff · 15 years ago
  51. 1860a31 Pass the GlobalDecl to getMangledName, fixes PR4890. by Anders Carlsson · 15 years ago
  52. 0ff8baf Pass GlobalDecls to GenerateCode and StartFunction. by Anders Carlsson · 15 years ago
  53. 555b4bb GlobalDecl doesn't have an explicit constructor anymore. by Anders Carlsson · 15 years ago
  54. 4a6835e Add stricter GlobalDecl constructors. by Anders Carlsson · 15 years ago
  55. 75212ee Fix a regression where write-barrier was not being generated for block pointer. by Fariborz Jahanian · 15 years ago
  56. f299124 Eliminate some "default"s in CheckICE. by Douglas Gregor · 15 years ago
  57. e30572a Look for overloaded arrow operators in base classes. by Anders Carlsson · 15 years ago
  58. 5803331 Teach LIT2 how to run Clang tests in the objdir for srcdir != objdir builds. by Daniel Dunbar · 15 years ago
  59. cbd1933 Initial handling of -m{soft-float,hard-float,float-abi=} for ARM. by Daniel Dunbar · 15 years ago
  60. e6ad3f9 Move X86 handling of -m[no-]soft-float and -m[no-]red-zone into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  61. 1d65e4b Change getLLVMArchNameForARM to just get the suffix. by Daniel Dunbar · 15 years ago
  62. 417292c Patch to collect conversion methods in base(s) and derived by Fariborz Jahanian · 15 years ago
  63. d9a1db3 Non fragile ABI for GNU runtime. Patch bu David Chisnall. by Fariborz Jahanian · 15 years ago
  64. 0f72856 Don't check use of a member function declaration used if the member function is virtual and the member reference expression doesn't explicitly qualify it. Fixes PR4878. by Anders Carlsson · 15 years ago
  65. 59600d8 static_cast, reinterpret_cast, and const_cast can all be used in C++ by Douglas Gregor · 15 years ago
  66. e942bbe When performing unqualified name lookup into a DeclContext, also look into by Douglas Gregor · 15 years ago
  67. 736d8a6 Get the size of object to pass to objc_memmove_collectable() by Fariborz Jahanian · 15 years ago
  68. 716a004 set svn:ignore by Nuno Lopes · 15 years ago
  69. 728a512 Add code to mangle the triple for LLVM on ARM. by Daniel Dunbar · 15 years ago
  70. b317f8f Make AnalysisManager stateless. Now other analyzer components only depends on by Zhongxing Xu · 15 years ago
  71. f84a4a4 Don't pass -fno-builtin-str{cat,cpy} to clang-cc, I forget we don't support that yet. PR4941. by Daniel Dunbar · 15 years ago
  72. b163ef7 ARM: Pass -mcpu to clang-cc based on -march= and -mcpu=. by Daniel Dunbar · 15 years ago
  73. 5cea4bd Don't substitute prcontext. by Daniel Dunbar · 15 years ago
  74. 2ba9157 Implement Darwin/ARM behavior for defaulting to -fno-builtin-str{cat,cpy}. by Daniel Dunbar · 15 years ago
  75. 3604386 Make the forwarding member of block byref structs be a pointer to the block byref struct itself. by Anders Carlsson · 15 years ago
  76. e2fd664 Add a check that -static is not used with -dynamic or -mdynamic-no-pic. by Daniel Dunbar · 15 years ago
  77. 88a3d6c Factor out CheckPreprocessing options to share between Clang/CC1 tools. by Daniel Dunbar · 15 years ago
  78. 6598629 Recognize and ignore -Woverloaded-virtual. by Daniel Dunbar · 15 years ago
  79. 70ba7e0 Fix dependencies for DiagnosticGroups.td. by Daniel Dunbar · 15 years ago
  80. 1cdcc57 When re-entering a template scope, we may be entering a class template by Douglas Gregor · 15 years ago
  81. f8d8d1a Don't bother to perform any initialization for a variable declaration by Douglas Gregor · 15 years ago
  82. 9cd9f3f For a C++ delete expression where the operand is of class type that by Douglas Gregor · 15 years ago
  83. 3fec4c6 Use the right GlobalDecl type for destructors. by Anders Carlsson · 15 years ago
  84. 39da0b8 Improve handling of initialization by constructor, by ensuring that by Douglas Gregor · 15 years ago
  85. 84ec96c Improve Darwin argument translation to match what the driver driver does. by Daniel Dunbar · 15 years ago
  86. 6acda16 Move Clang X86 cpu/feature argument translation into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  87. 5ed34f4 Change Get{File,Program}Path to return an std::string (instead of a sys::Path). by Daniel Dunbar · 15 years ago
  88. 8813764 Remove gratuitous use of c_str(). by Daniel Dunbar · 15 years ago
  89. 302e2ea Use Twine concatenation instead of llvm::format. by Daniel Dunbar · 15 years ago
  90. 5b750fe Simplify. by Daniel Dunbar · 15 years ago
  91. 16484af StringRefize ArgList construction of ArgStrings. by Daniel Dunbar · 15 years ago
  92. a2b6b76 Suppress build warning. by Daniel Dunbar · 15 years ago
  93. 0aebc81 If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. by Anders Carlsson · 15 years ago
  94. cfcd7fd Implement: <rdar://problem/7185647> [RegionStore] 'self' cannot be NULL upon entry to a method by Ted Kremenek · 15 years ago
  95. 0d36aa8 Status update related to code gen for type conversion functions. by Fariborz Jahanian · 15 years ago
  96. cc6f803 Use AddDarwinArch for passing arch name to assembler. by Daniel Dunbar · 15 years ago
  97. fbefe6b Add DarwinTool base class for all Darwin tools, and move AddDarwin[Sub]Arch there. by Daniel Dunbar · 15 years ago
  98. 0dcb9a3 Push bound architecture name into TranslateArgs. by Daniel Dunbar · 15 years ago
  99. 4954018 Push bound architecture name into Compilation::getArgsForToolChain. by Daniel Dunbar · 15 years ago
  100. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago