1. 6920cdc When instantiating a member function declared via a typedef, don't try by Douglas Gregor · 14 years ago
  2. fe60f84 When a class contains a non-empty anonymous union or struct, mark is by Douglas Gregor · 14 years ago
  3. e99bdb6 Don't build an aggregate constructor loop when the constructor is trivial. by Anders Carlsson · 14 years ago
  4. 33d73fa Add test case that I forgot to check in. by Anders Carlsson · 14 years ago
  5. d566381 Replace a char*/size pair with stringref. by Benjamin Kramer · 14 years ago
  6. 28e9483 Simplify. by Anders Carlsson · 14 years ago
  7. 0d7c583 Don't copy or initialize empty classes. Fixes PR7012. by Anders Carlsson · 14 years ago
  8. 3855a07 Store the entire base subobject in SubVTTIndices. by Anders Carlsson · 14 years ago
  9. 4337396 Remove OldGetAddressOfBaseClass - bye bye ambiguities. by Anders Carlsson · 14 years ago
  10. 8246cc7 Get rid of the last caller of OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  11. 4235840 More work towards getting rid of OldGetAddressOfBaseClass. by Anders Carlsson · 14 years ago
  12. 77fae58 Get rid of a call to GetAddressOfDirectBaseInCompleteClass. by Anders Carlsson · 14 years ago
  13. c11bb21 Have getSubVTTIndex take a BaseSubobject instead of just a base. by Anders Carlsson · 14 years ago
  14. fcaeef2 Change CXXConstructExpr::Create to take a ConstructionKind. by Anders Carlsson · 14 years ago
  15. 314e622 Pass ForVirtualBase all the way to GetVTTParameter. by Anders Carlsson · 14 years ago
  16. 8e6404c Add the same 'ForVirtualBase' parameter to EmitCXXDestructorCall. by Anders Carlsson · 14 years ago
  17. 155ed4a Revert my last change and add a 'ForVirtualBase' parameter to EmitCXXConstructorCall instead. by Anders Carlsson · 14 years ago
  18. 24eb78e Pass the construction kind down to EmitCXXConstructorCall. by Anders Carlsson · 14 years ago
  19. 72e96fd Add an enum to CXXConstructExpr so we can determine if the construction expression constructs a non-virtual or virtual base. by Anders Carlsson · 14 years ago
  20. 8292931 Remove another unused function. by Anders Carlsson · 14 years ago
  21. 05dd1f6 Remove an unused function. by Anders Carlsson · 14 years ago
  22. 81bf3b3 CodeGen: Shrink RValue. 4 words -> 2 words. by Benjamin Kramer · 14 years ago
  23. 4b02afc As per Chris' request, return the Instruction from EmitCall and add the metadata in the caller. by David Chisnall · 14 years ago
  24. 06a9f36 Complete reimplementation of the synthesis for implicitly-defined copy by Douglas Gregor · 14 years ago
  25. 4c50b69 fix a broken link, diagnostickinds.td was fissioned. by Chris Lattner · 14 years ago
  26. bfe7e91 Simplify EmitCopyCtorCall. by Anders Carlsson · 14 years ago
  27. 43db20e Simplify EmitClassAggrMemberwiseCopy. by Anders Carlsson · 14 years ago
  28. e2e69ef Bump default template instantiation depth to 1024, as required by C++0x by Douglas Gregor · 14 years ago
  29. f62756f Clean up EmitClassMemberwiseCopy further. by Anders Carlsson · 14 years ago
  30. 1d1d118 Get rid of a parameter from EmitClassMemberwiseCopy. by Anders Carlsson · 14 years ago
  31. 59b7f15 When defining implicit copy constructors, use SetBaseOrMemberInitializers to initialize the bases. by Anders Carlsson · 14 years ago
  32. 39957dc Added an RAII object that helps set up/tear down the Sema context by Douglas Gregor · 14 years ago
  33. 63e742b Attach message send metadata to the lookup as well as to the call (GNU runtime). by David Chisnall · 14 years ago
  34. db83194 Make super message lookups cacheable (GNUstep Runtime) by David Chisnall · 14 years ago
  35. dd5c98f Tweaked EmitCall() to permit the caller to provide some metadata to attach to the call site. by David Chisnall · 14 years ago
  36. afaf0fa Remove empty directory. by Benjamin Kramer · 14 years ago
  37. 62cf344 with recent optimizer changes, these all get devirtualized. by Chris Lattner · 14 years ago
  38. 77bb1aa It turns out that basically every caller to RequireCompleteDeclContext by John McCall · 14 years ago
  39. cdb65d8 Fix NON_ANSI_COMPILE_FLAGS setting, for MSVC. by Daniel Dunbar · 14 years ago
  40. f42e337 Add null check in CFGBuilder::VisitStmt() to make CFG construction by Ted Kremenek · 14 years ago
  41. f51f20f Rename 'CIndex' to 'libclang', since it has basically become our stable public by Daniel Dunbar · 14 years ago
  42. 99e8192 Don't perform AnalysisBasedWarnings in Sema or run the static analyzer when a by Ted Kremenek · 14 years ago
  43. c0c8300 After substituting a template argument for a non-type template by Douglas Gregor · 14 years ago
  44. 2888b65 When synthesizing Objective C records, give the synthetic fields public by John McCall · 14 years ago
  45. 72be24f Fix a thinko that caused us not to compute __builtin_offset as a by Douglas Gregor · 14 years ago
  46. 42748ec Teach clang_getLocation() to cope with a NULL file argument. by Douglas Gregor · 14 years ago
  47. 106d9ea Remove an unnecessary parameter from EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  48. 895162d Clean up our handling of local instantiation scopes, which keep track by Douglas Gregor · 14 years ago
  49. 25cf7b4 Move include installation steps to better location, inside each include dir instead of at the top-level. by Daniel Dunbar · 14 years ago
  50. 866163b Fixed incorrect type of alloca (GNU runtime). by David Chisnall · 14 years ago
  51. e215f72 Add calling convention related attributes to related declaration. Mark attributes invalid on type related checking so to add them to declarations only when everything is ok. by Abramo Bagnara · 14 years ago
  52. b1f1b26 Attribute noreturn is now put in declaration attributes. Fixed a double warning generation. by Abramo Bagnara · 14 years ago
  53. 259d48e An edge from a call expression to the exit block is only an abnormal edge by John McCall · 14 years ago
  54. 5402295 Fix ADL for types declared in transparent decls, from Alp Toker! by Douglas Gregor · 14 years ago
  55. dc60c1e Introduce a sequence number into class template partial by Douglas Gregor · 14 years ago
  56. c743571 Account for the VTT argument when making an implicit copy constructor for by John McCall · 14 years ago
  57. 9ffce21 When we start the definition of a class template, set the by Douglas Gregor · 14 years ago
  58. a8b4a1e Remove unused trait. by Zhongxing Xu · 14 years ago
  59. ed8afac Refactor the AnalysisConsumer to analyze functions after the whole by Zhongxing Xu · 14 years ago
  60. 51e2a5d Fix a tentative-parse error with unqualified template ids in cast expressions. by John McCall · 14 years ago
  61. cf00ac8 Fix pasto in this test by Douglas Gregor · 14 years ago
  62. 4290fbd Add Clang version inspection macros. Fixes PR6681. by Douglas Gregor · 14 years ago
  63. 9dffe6f Fix -fno-rtti -fexceptions by forcing the emission of (non-"builtin") RTTI by John McCall · 14 years ago
  64. 0d0db2f logical ops, unary ops, pairwise ops by Nate Begeman · 14 years ago
  65. 891f80e Teach EHCleanupBlock to deal appropriately with the possibility that there by John McCall · 14 years ago
  66. f406d9c Get the base class addresses before calling EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  67. 9ffdd45 Remove an unnecessary argument to EmitClassCopyAssignment. by Anders Carlsson · 14 years ago
  68. 63b4385 Rebuild the nested name specifiers in member-pointer declarator chunks when by John McCall · 14 years ago
  69. 2321934 Comparisons. by Nate Begeman · 14 years ago
  70. 647aa46 Do not enable '-analyze-check-security-syntactic' by default when using '--analyze'. There by Ted Kremenek · 14 years ago
  71. ad4e02f When determining a standard conversion sequence involves resolving the by Douglas Gregor · 14 years ago
  72. 9d84632 Properties cannot be synthesized by-dafult in by Fariborz Jahanian · 14 years ago
  73. 5d822f0 Use clang::VarDecl name instead of llvm::GlobalVariable name. by Devang Patel · 14 years ago
  74. cf99910 Add USR support for 'static inline' functions (which can be declared in header files). by Ted Kremenek · 14 years ago
  75. 5ac5756 Remove USRGenerator::VisitBlockDecl(). We don't need to generate USRs for blocks, since by Ted Kremenek · 14 years ago
  76. 6b15f8e Add test case for __has_feature(objc_weak_class). by Ted Kremenek · 14 years ago
  77. 066cde1 Start stamping out the __builtin_neon stuff. by Nate Begeman · 14 years ago
  78. 9498d38 Add FunctionDecl::isVariadic() to match BlockDecl::isVariadic() and ObjCMethodDecl::isVariadic(). by Ted Kremenek · 14 years ago
  79. db9a0ae Rename BlockDecl::IsVariadic() to BlockDecl::isVariadic() to match the casing by Ted Kremenek · 14 years ago
  80. daa3ac5 IRgen/NeXT: Put the synthesized _objc_super, _message_ref_t decls in a valid DeclContext, to satisfy the invariants that should hold on a RecordDecl. by Daniel Dunbar · 14 years ago
  81. f80cb75 Remove a FIXME that is unlikely to be fixed (streaming code generation). by Daniel Dunbar · 14 years ago
  82. 8a5e83c Frontend: Tie backend verification passes to CodeGenOptions::VerifyModule, by Daniel Dunbar · 14 years ago
  83. 5ac2833 Bump Clang version number. by Ted Kremenek · 14 years ago
  84. 516e6e0 When performing partial ordering of class template partial by Douglas Gregor · 14 years ago
  85. 31dce8f For template argument deduction from class template partial by Douglas Gregor · 14 years ago
  86. fc39dc4 A not equal for an unordered relation should return true as specified in IEEE-754, e.g., by Mon P Wang · 14 years ago
  87. 77e2c67 It turns out that we *can* end up having to display template argument by Douglas Gregor · 14 years ago
  88. 3ff9d11 Add '__has_feature' support for weak ObjC classes. by Ted Kremenek · 14 years ago
  89. 6d9afd9 Sort '__has_feature' cases. No functionality change. by Ted Kremenek · 14 years ago
  90. 7576a65 Test case for r102578. by John McCall · 14 years ago
  91. 96db310 Access-check during template argument deduction from the context of the by John McCall · 14 years ago
  92. 862b24f Fix CFG crasher involving statement expressions reported in PR 6938. by Ted Kremenek · 14 years ago
  93. f581382 Properly switch into the declaring scope of a template when performing by John McCall · 14 years ago
  94. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 14 years ago
  95. 6e45cbc build: Add CLANG_NO_RUNTIME build variable, which disables building clang by Daniel Dunbar · 14 years ago
  96. 5e2a8ac Driver: Add support for -fobjc-abi-version=. - <rdar://problem/7919678> by Daniel Dunbar · 14 years ago
  97. 1e3f5ba Ensure that cv-qualifiers are correctly removed for post-inc/decrements by Sean Hunt · 14 years ago
  98. 29d2fd5 Fix template instantiation for __builtin_offfsetof expressions that refer to members of anonymous structs/unions by Douglas Gregor · 14 years ago
  99. 8028981 A bit more neon work, adds work (but the ABI is wrong), types mostly stamped out. by Nate Begeman · 14 years ago
  100. 9d5d60f Diagnose __builtin_offsetof expressions that refer to bit-fields by Douglas Gregor · 14 years ago