1. 280aa75 tests: Stash clang/clang-cc and LLVM src/obj paths for use elsewhere. by Daniel Dunbar · 15 years ago
  2. 29813c3 Some people don't want to fix their broken code just yet, so turn off by Mike Stump · 15 years ago
  3. 7adb10f When implicitly declaring operators new, new[], delete, and delete[], by Douglas Gregor · 15 years ago
  4. 8b915e7 1) don't do overload resolution in selecting conversion by Fariborz Jahanian · 15 years ago
  5. 7171011 Add back the workaround since it lead to constructor conversion bugs :( by Anders Carlsson · 15 years ago
  6. c7e406b Commit test case from PR4655, which tests the canonical-types fix in r81913 by Douglas Gregor · 15 years ago
  7. 1fdd89b When printing an overload candidate that is a function template specialization, by Douglas Gregor · 15 years ago
  8. 34acd3e Issue good diagnostics when initialization failes due to by Fariborz Jahanian · 15 years ago
  9. f882574 Add an assertion and a test case, in a fruitless attempt to track down an existing bug by Douglas Gregor · 15 years ago
  10. f652793 Perform overload resolution when selecting a pointer conversion by Fariborz Jahanian · 15 years ago
  11. 9eea08b Slightly improved template argument deduction for use in partial by Douglas Gregor · 15 years ago
  12. 8c12506 Add test case. by Anders Carlsson · 15 years ago
  13. bf4ea56 Implement partial ordering of class template partial specializations by Douglas Gregor · 15 years ago
  14. aac6e3a If a conversion operator exists in a base class, make sure to cast the object to that base class. by Anders Carlsson · 15 years ago
  15. 7f9e646 Handle reinterpret_cast between integral types and pointer types. by Anders Carlsson · 15 years ago
  16. c1eb14a Codegen support for nullptr from C++0x. by Anders Carlsson · 15 years ago
  17. e2b5744 Add static analyzer transfer function support for __builtin_offsetof. by Ted Kremenek · 15 years ago
  18. 78cf9a2 Issue a good diagnostics when attempt to select by Fariborz Jahanian · 15 years ago
  19. 1d524c3 Diagnose taking the address of a bit-field inside a conditional operator. by Anders Carlsson · 15 years ago
  20. 5d7d375 Implement partial ordering of function templates when calling a by Douglas Gregor · 15 years ago
  21. 60d9231 Slightly improve the test for partial ordering of overloaded function templates. by Douglas Gregor · 15 years ago
  22. d173b20 Test function template partial ordering when resolving the address of by Douglas Gregor · 15 years ago
  23. 31fddcc Update tests by Anders Carlsson · 15 years ago
  24. 05b23ea Skeletal support for friend class templates. by John McCall · 15 years ago
  25. 4202557 ARM/[A]APCS: Ignore empty records passed as arguments. by Daniel Dunbar · 15 years ago
  26. e73bb60 Refactor MarkDeductedTemplateParameters into by Douglas Gregor · 15 years ago
  27. b191e2d Used visible conversion function api to do overload by Fariborz Jahanian · 15 years ago
  28. cf43d8b Force triple. by Daniel Dunbar · 15 years ago
  29. 0f9a5b5 -Wchar-subscripts should not warn for explicit signed char subscripts either. Another fix for PR4978. by Sam Weinig · 15 years ago
  30. 1282029 Tighten up checking of non-dependent arguments as part of template by Douglas Gregor · 15 years ago
  31. 8a51491 Implement partial ordering of function template specializations by Douglas Gregor · 15 years ago
  32. b0a2290 -Wchar-subscripts should not warn for unsigned char subscripts. Fixes PR4978. by Sam Weinig · 15 years ago
  33. d7c3e4e Removed couple of FIXME comments from test case. by Fariborz Jahanian · 15 years ago
  34. c3f48cd Using the property dot-syntax to invoke a non-eixsting by Fariborz Jahanian · 15 years ago
  35. 34771b5 Fix subtle bug in generating LLVM function declarations for builtin functions. by Daniel Dunbar · 15 years ago
  36. b0d5819 ARM/APCS: Don't treat structs w/ floating point types as "integer like". by Daniel Dunbar · 15 years ago
  37. 76e2b71 Add support for -Wchar-subscripts. Fixes PR4801. by Sam Weinig · 15 years ago
  38. 283e4d5 If a function call returns a reference, don't bind it to a temporary. by Anders Carlsson · 15 years ago
  39. 16a0808 Some minor clang/ARM/AAPCS tweaks. by Daniel Dunbar · 15 years ago
  40. 018ba5a Add TargetInfo::getABI(), and base ARM APCS vs AAPCS choice on that. by Daniel Dunbar · 15 years ago
  41. a2a4161 ARM target tweaks. by Daniel Dunbar · 15 years ago
  42. 255d641 Fix a bug in getFriendObjectKind where we would clear out all mask bits except IDNS_TagFriend and IDNS_OrdinaryFriend but then check for IDNS_Tag and IDNS_Ordinary. by Anders Carlsson · 15 years ago
  43. 2c59d3c Perform the C++ specific semantic checks of a function declaration after it's been merged with the previous declaration. This ensures that getPreviousDecl() will have the right value when ActOnConversionDeclarator is called. by Anders Carlsson · 15 years ago
  44. 8195bc9 CXXMethodDecl::isVirtual needs to check the canonical declaration. Fixes PR4878. by Anders Carlsson · 15 years ago
  45. e0c8822 Fix another byref bug. This should hopefully get QuickLookPlugins building successfully. by Anders Carlsson · 15 years ago
  46. 98303b9 ARM/APCS: Only "integer like" aggregates should be returned in r0 (following by Daniel Dunbar · 15 years ago
  47. 1fc09a9 Rework the way we determine whether an externally visible symbol is by Douglas Gregor · 15 years ago
  48. bbece57 Force triple to avoid spurious differences due to runtime choice. by Daniel Dunbar · 15 years ago
  49. 9aa78d5 Add RUN line. by Daniel Dunbar · 15 years ago
  50. 0a23d76 Don't use the PredefinedExpr string as the global variable name, these don't by Daniel Dunbar · 15 years ago
  51. 8a1d229 Add a test for PR3733. by Anders Carlsson · 15 years ago
  52. 6250921 More work toward having an access method for visible conversion functions. by Fariborz Jahanian · 15 years ago
  53. 0ee33cf Handle CK_DerivedToBase when emitting lvalue casts. by Anders Carlsson · 15 years ago
  54. 18be84c Add support for __block variables with alignment greater than __alignof(void *). by Anders Carlsson · 15 years ago
  55. 5e7bace Stub out room for ARM APCS ABI implementation (and AAPCS_VFP, although you can't by Daniel Dunbar · 15 years ago
  56. c7cba15 Fix a crash when generating vtables that contain destructors. by Anders Carlsson · 15 years ago
  57. 4719f4e When performing name lookup within a class template or class template by Douglas Gregor · 15 years ago
  58. 5b9bd21 Introduce "DefinedOrUnknownSVal" into the SVal class hierarchy, providing a way by Ted Kremenek · 15 years ago
  59. 5346278 Patch to build visible conversion function list lazily and make its by Fariborz Jahanian · 15 years ago
  60. 52604ab Slight improvement for extern templates, so that an explicit by Douglas Gregor · 15 years ago
  61. 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
  62. 9f18507 Tweak the semantics of FunctionDecl::isOutOfLine to consider an by Douglas Gregor · 15 years ago
  63. d5d6778 Add test for dependent PredefinedExprs. by Sam Weinig · 15 years ago
  64. 6cc1518 Cleanup and test C++ default arguments. Improvements include: by Douglas Gregor · 15 years ago
  65. 9cc7807 Track a class template specialization's point of instantiation separately by John McCall · 15 years ago
  66. 136a698 When stringizing a NamedDecl for a diagnostic, treat the template by John McCall · 15 years ago
  67. ed90c4e Fix PR4878 for real. by Anders Carlsson · 15 years ago
  68. c4e7019 Support elaborated dependent types and diagnose tag mismatches. by John McCall · 15 years ago
  69. 1da83fa Update this test to expect the "inbounds" keyword, which LLVM's constant by Dan Gohman · 15 years ago
  70. 043cad2 Diagnose VLAs as an error in C++. by Douglas Gregor · 15 years ago
  71. 1860a31 Pass the GlobalDecl to getMangledName, fixes PR4890. by Anders Carlsson · 15 years ago
  72. 75212ee Fix a regression where write-barrier was not being generated for block pointer. by Fariborz Jahanian · 15 years ago
  73. f299124 Eliminate some "default"s in CheckICE. by Douglas Gregor · 15 years ago
  74. e30572a Look for overloaded arrow operators in base classes. by Anders Carlsson · 15 years ago
  75. 5803331 Teach LIT2 how to run Clang tests in the objdir for srcdir != objdir builds. by Daniel Dunbar · 15 years ago
  76. d9a1db3 Non fragile ABI for GNU runtime. Patch bu David Chisnall. by Fariborz Jahanian · 15 years ago
  77. 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
  78. 59600d8 static_cast, reinterpret_cast, and const_cast can all be used in C++ by Douglas Gregor · 15 years ago
  79. e942bbe When performing unqualified name lookup into a DeclContext, also look into by Douglas Gregor · 15 years ago
  80. 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
  81. 5cea4bd Don't substitute prcontext. by Daniel Dunbar · 15 years ago
  82. 2ba9157 Implement Darwin/ARM behavior for defaulting to -fno-builtin-str{cat,cpy}. by Daniel Dunbar · 15 years ago
  83. 3604386 Make the forwarding member of block byref structs be a pointer to the block byref struct itself. by Anders Carlsson · 15 years ago
  84. 1cdcc57 When re-entering a template scope, we may be entering a class template by Douglas Gregor · 15 years ago
  85. 9cd9f3f For a C++ delete expression where the operand is of class type that by Douglas Gregor · 15 years ago
  86. 39da0b8 Improve handling of initialization by constructor, by ensuring that by Douglas Gregor · 15 years ago
  87. cfcd7fd Implement: <rdar://problem/7185647> [RegionStore] 'self' cannot be NULL upon entry to a method by Ted Kremenek · 15 years ago
  88. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  89. 3dab34a Allow a declaration of an array to complete a prior, incomplete by Douglas Gregor · 15 years ago
  90. 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
  91. 7f4f86a More objc GC's API work for array of pointers declared as __strong. by Fariborz Jahanian · 15 years ago
  92. a6046be Fix ShouldUseClangCompiler to use llvm::Triple. by Daniel Dunbar · 15 years ago
  93. ac423ba Fixes a regression in generating objc's GC API by Fariborz Jahanian · 15 years ago
  94. 60e8188 convert this to filecheck, hopefully it will fix PR4888. If nothing by Chris Lattner · 15 years ago
  95. 3a082d8 Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  96. 6b2becf Support templateids in friend declarations. Fixes bug 4859. by John McCall · 15 years ago
  97. 724827f Support running tests using the new 'lit', via 'make test LIT2=1'. by Daniel Dunbar · 15 years ago
  98. e0be8b1 Remove FIXMEs for pedantically-gcc-bug-compatible behavior. by Daniel Dunbar · 15 years ago
  99. d74d414 Handle variadic constructors better. Share code between BuildCXXConstructExpr and BuildCXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  100. 4ca606e reject returning a block expr even when it has parens and casts in the way. by Chris Lattner · 15 years ago