1. d7d5bb1 exclude cmake build directories from being installed by Chris Lattner · 14 years ago
  2. 9675466 Land another cleanup patch. by Anders Carlsson · 14 years ago
  3. 9fd682b Land this test. by Anders Carlsson · 14 years ago
  4. 9994eed Tweak test for destruction of copied temporary objects by Douglas Gregor · 14 years ago
  5. b86cf0c When copying a temporary object to initialize an entity for which the by Douglas Gregor · 14 years ago
  6. 8e142cc Revert enough of my patches to fix self-host again :( by Anders Carlsson · 14 years ago
  7. 4154e0b When we create a temporary of class type that we don't immediately by Douglas Gregor · 14 years ago
  8. df1147e Cleanup SynthesizeCXXCopyConstructor. by Anders Carlsson · 14 years ago
  9. 5f7cc73 Clean up SynthesizeCXXCopyAssignment a little. by Anders Carlsson · 14 years ago
  10. 8561a86 RenameGetAddressOfBaseOfCompleteClass to GetAddressOfDirectBaseInCompleteClass to reflect that it only handles direct bases. by Anders Carlsson · 14 years ago
  11. 8f2abbc Add an explicit UsuallyTinyPtrVector that takes a single element. by Anders Carlsson · 14 years ago
  12. f500de5 More cleanup. by Anders Carlsson · 14 years ago
  13. 6444c41 Simplify EmitClassMemberwiseCopy now that it's only used for fields. by Anders Carlsson · 14 years ago
  14. 89fe019 Switch this to new API. by Nick Lewycky · 14 years ago
  15. e127abe DefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create implicit base initializers. (Member initializers are still handled by CodeGenFunction::SynthesizeCXXCopyConstructor for now). by Anders Carlsson · 14 years ago
  16. c795750 When building implicit base initializers, add a derived-to-base cast that points to the exact base specifier. by Anders Carlsson · 14 years ago
  17. a88ad56 Rename GetAddressOfBaseClass to OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  18. e04d45e Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to use the new version. by Anders Carlsson · 14 years ago
  19. a04efdf Change CodeGenFunction::GetAddressOfDerivedClass to take a BasePath. by Anders Carlsson · 14 years ago
  20. fc89c31 Convert more call sites over to the new GetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  21. f86fcb3 When we attempt to create a temporary object of class type, be sure by Douglas Gregor · 14 years ago
  22. 34a2d38 Add a new GetAddressOfBaseClass overload that takes a base path and. Use it for derived-to-base casts. by Anders Carlsson · 14 years ago
  23. d1a2722 When we are performing copy initialization of a class type via its by Douglas Gregor · 14 years ago
  24. 564618f Headers: Hide intptr_t and uintptr_t definitions behind _INTPTR_T and _UINTPTR_T by Daniel Dunbar · 14 years ago
  25. d3651cc Fix pasto, add a comment. by Benjamin Kramer · 14 years ago
  26. 48c70f6 Factor code. No functionality change. by Benjamin Kramer · 14 years ago
  27. f9d68e1 Add base paths for CK_BaseToDerived and CK_BaseToDerivedMemberPointer. by Anders Carlsson · 14 years ago
  28. cee2242 Add base paths to CK_UncheckedDerivedToBase and CK_DerivedToBaseMemberPointer. by Anders Carlsson · 14 years ago
  29. 5cf86ba Actually produce base paths for CastExprs of kind CK_DerivedToBase. by Anders Carlsson · 14 years ago
  30. 41b2dcd Add BasePath arguments to all cast expr constructors. by Anders Carlsson · 14 years ago
  31. f645aaa Driver/Darwin: Fix Objective-C non-fragile ABI and dispatch method defaults, which were wrong in numerous places. by Daniel Dunbar · 14 years ago
  32. 77c13e0 When we take the address of a declaration to bind it to a non-type by Douglas Gregor · 14 years ago
  33. f643b9b NeXT: Clean up dispatch method policy selection. by Daniel Dunbar · 14 years ago
  34. 40788d9 Simplify. by Daniel Dunbar · 14 years ago
  35. e25a96c Pass the base specifiers through to CheckDerivedToBaseConversion. No functionality change yet. by Anders Carlsson · 14 years ago
  36. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 14 years ago
  37. c70e93c Tweak test case slightly by Douglas Gregor · 14 years ago
  38. 48c89f4 Be more careful around dependent nested-name-specifiers, complaining by Douglas Gregor · 14 years ago
  39. 80971bd isValue is set to false by default. by Anders Carlsson · 14 years ago
  40. 7ab9d57 Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBaseSpecifierArray. More to come. by Anders Carlsson · 14 years ago
  41. 107de90 Keep track of when DependentNameTypes have no associated keyword by Douglas Gregor · 14 years ago
  42. d9d3a1c Update prototypes. by Benjamin Kramer · 14 years ago
  43. 2dca88f Fix a place in inline asm lowering which was creating a TruncInst with a by Dan Gohman · 14 years ago
  44. 76d3264 Recommit r102215, this time being more careful to only set the "principal by John McCall · 14 years ago
  45. ba5f6ec Teach clang -fixit to modify files in-place, or -fixit=suffix to create new by Nick Lewycky · 14 years ago
  46. 970c618 Revert accidental check-in. by Devang Patel · 14 years ago
  47. f0bf4d5 Revert r102215. This causes clang crash while compiling a test case from gdb testsuite. by Devang Patel · 14 years ago
  48. 8a43776 With -fno-constant-cfstrrings, class NSConstantString by Fariborz Jahanian · 14 years ago
  49. 4e6c0d1 Rework Parser-Sema interface for Objective-C @catch exception object by Douglas Gregor · 14 years ago
  50. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  51. ec951e0 More -fno-constant-cfstrings API work. by Fariborz Jahanian · 14 years ago
  52. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  53. f88b0d6 Transition the last acceptable-result filter kind in LookupResult over to use by John McCall · 14 years ago
  54. 14b9162 Make Parser::ConsumeAndStoreUntil() more consistent with Parser::SkipUntil(). by Argyrios Kyrtzidis · 14 years ago
  55. a3bdded Destroy the inheritance path. by Anders Carlsson · 14 years ago
  56. 409c99e Add an inheritance path member variable to CastExpr. For now it's always null but for derived-to-base and base-to-derived cast expressions it will contain the full base path. This is needed to avoid ambiguities. by Anders Carlsson · 14 years ago
  57. 046861b Turn CXXMethodVector into a generic class template. by Anders Carlsson · 14 years ago
  58. b76db23 NeXT/EH: When generating the rethrow code for a finally block, make sure to by Daniel Dunbar · 14 years ago
  59. ba6940a NeXT/EH: Tidy up EH code a bit, don't emit the catch block EH handler if it is unreachable. by Daniel Dunbar · 14 years ago
  60. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 14 years ago
  61. 0551176 Improve on my previous diagnostics: per Doug's comment. by Fariborz Jahanian · 14 years ago
  62. 2bb5dda More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 14 years ago
  63. aab64d0 Implement PR6845. We allow matching constraints to have different by Chris Lattner · 14 years ago
  64. ca5cec3 Trying to improve on a diagnostics for properties. by Fariborz Jahanian · 14 years ago
  65. 17e1d35 Require a complete type for the lhs of member pointer dereference operations if the type isn't exactly the same as the container class. Fixes PR6783. by Sebastian Redl · 14 years ago
  66. 37de281 fix typo by Chris Lattner · 14 years ago
  67. b07fd76 rename test by Chris Lattner · 14 years ago
  68. 9bffb07 david conrad points out that {|} in inline assembly on arm are not asm by Chris Lattner · 14 years ago
  69. d57a38e When instantiating a typedef of an anonymous tag type, note in the tag by Douglas Gregor · 14 years ago
  70. 63010a7 Cleanup. by Anders Carlsson · 14 years ago
  71. f6513ed Handle copy initialization in BuildImplicitMemberInitializer. Not used yet. by Anders Carlsson · 14 years ago
  72. ea00f84 add GNU C++ include paths for Fedora 11,12 x86_64, patch by mikem! by Chris Lattner · 14 years ago
  73. 00b40d3 Revert "C++ doesn't really use "namespaces" for different kinds of names the same", which seems to break most C++ nightly test apps. by Daniel Dunbar · 14 years ago
  74. 1444aef concepts is not a keyword here and fix copy-pasto. by Nick Lewycky · 14 years ago
  75. 20b3c9d Strip cv-qualifiers when building C++ constructor and destructor names. by Douglas Gregor · 14 years ago
  76. 6a03e34 Handle compound assignment expressions (i += j) as lvalues, which is by Douglas Gregor · 14 years ago
  77. 0e313bd Add another 'catch all' access diagnostic. by Anders Carlsson · 14 years ago
  78. f55e3fd Emit a lame diagnostic when we can't mangle operator names by Douglas Gregor · 14 years ago
  79. 20f0cc7 Mangle dependent template names such as the nested-name-specifier in by Douglas Gregor · 14 years ago
  80. e5ef740 Add an ImplicitInitializerKind enum and pass it to BuildImplicitBaseInitializer and BuildImplicitMemberInitializer. by Anders Carlsson · 14 years ago
  81. 114a297 Fix a think-o that broke self-host. by Anders Carlsson · 14 years ago
  82. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 14 years ago
  83. d1aa800 Change the 'declared at' diagnostic to say 'declared here'. by Anders Carlsson · 14 years ago
  84. ddfb75f Factor code to initialize an implicit member out into a separate function. by Anders Carlsson · 14 years ago
  85. 4074eef When parsing a cast-expression that starts with a scope annotation, by Douglas Gregor · 14 years ago
  86. 08688ac I hate default statements. Fixes PR6874. by Douglas Gregor · 14 years ago
  87. defefd2 Remove calls to isDependentContext, since we handle that case earlier in the code. Make BuildImplicitBaseInitializer return a boolean instead. by Anders Carlsson · 14 years ago
  88. 4dfdd1b Template instantiation for @try and @finally (but not @catch, yet). by Douglas Gregor · 14 years ago
  89. baf633b Make TemplateDecl and ObjCContainerDecl abstract by Douglas Gregor · 14 years ago
  90. bd4187b Kill off IDNS_ObjCImplementation and IDNS_ObjCCategoryName; they by Douglas Gregor · 14 years ago
  91. c3203e7 Template instantiation for the Objective-C "fast enumeration" statement, i.e., by Douglas Gregor · 14 years ago
  92. 8fdc13a Template instantiation for Objective-C++ @synchronized statements. by Douglas Gregor · 14 years ago
  93. d1377b2 Implement template instantiation for Objective-C++ @throw statements. by Douglas Gregor · 14 years ago
  94. 4c9d8d0 Check for -fno-constant-cfstrings consistency in pch. by Fariborz Jahanian · 14 years ago
  95. 33e982b Support for -fno-constant-cfstrings option - wip. by Fariborz Jahanian · 14 years ago
  96. e9ee23e Use the naming class from the overloaded lookup when access-checking an by John McCall · 14 years ago
  97. fe1ea7b another tweak for haiku support, patch by Paul Davey! by Chris Lattner · 14 years ago
  98. ef57c61 Some Objective-C++ types and expressions will never change during by Douglas Gregor · 14 years ago
  99. f49bb08 When a dependent Objective-C++ message send was able to resolve the by Douglas Gregor · 14 years ago
  100. 39968ad Remove the SelectorLoc argument to Sema::BuildInstanceMesssage and by Douglas Gregor · 14 years ago