1. 5c8a92e Avoid using __SIZE_TYPE__ in a -std=c++98 -pedantic-errors test, because that by Richard Smith · 11 years ago
  2. 9109bf1 C++11: don't warn about the deprecated 'register' keyword if it's combined with by Richard Smith · 11 years ago
  3. ed7dc87 Add tests for C++ DR100-150. by Richard Smith · 11 years ago
  4. 0012dd4 Add testcase for DR39 from PR5916. by Richard Smith · 11 years ago
  5. d6b6987 PR16263: Implement current direction of core issue 1376. Binding a reference to by Richard Smith · 11 years ago
  6. 41cb3d9 Fix handling of const_cast from prvalue to rvalue reference: such a cast is by Richard Smith · 11 years ago
  7. ddb5a39 Unify return type checking for functions and ObjC methods. Move all the by Eli Friedman · 11 years ago
  8. 6698be8 Fix some confusing diagnostic wording. s/implicit default/implicit/ if we're by Richard Smith · 11 years ago
  9. 79f4bb7 Add -Wdeprecated warnings and fixits for things deprecated in C++11: by Richard Smith · 11 years ago
  10. 98a7558 Include the unexpanded packs in the initializer expression when checking a by Nick Lewycky · 11 years ago
  11. 7c3e615 PR12086, PR15117 by Richard Smith · 11 years ago
  12. a4bb99c Move detection of reference members binding to temporaries from building of by Richard Smith · 11 years ago
  13. 01e0b1f Implement DR61: Address of ambiguous bound methods should be disallowed by David Majnemer · 11 years ago
  14. 2ec2b84 Implement DR85: Redeclaration of member is forbidden by David Majnemer · 11 years ago
  15. cafeb94 PR16243: Use CXXThisOverride during template instantiation, and fix up the by Richard Smith · 11 years ago
  16. 585bee4 Implement DR7 by David Majnemer · 11 years ago
  17. c2fe818 Bound member function diagnostic - suggest no-args calls and note overload candidates by David Blaikie · 11 years ago
  18. 8a66bf7 Refactor constant expression evaluation to associate the complete object of a by Richard Smith · 11 years ago
  19. b28e88c Tests and status for DR51-99. by Richard Smith · 11 years ago
  20. 1c73151 Tests and status for core issues 1-50. by Richard Smith · 12 years ago
  21. 0d8e964 First pass of semantic analysis for init-captures: check the initializer, build by Richard Smith · 12 years ago
  22. f45c299 C++1y: provide full 'auto' return type deduction for lambda expressions. This by Richard Smith · 12 years ago
  23. a8942d7 C++1y: an assignment operator is implicitly 'constexpr' if it would only call 'constexpr' assignment operators for a literal class type. by Richard Smith · 12 years ago
  24. 993f43f Grab-bag of bit-field fixes: by John McCall · 12 years ago
  25. ce61715 C++1y: support 'for', 'while', and 'do ... while' in constant expressions. by Richard Smith · 12 years ago
  26. 5528ac9 C++1y: support for increment and decrement in constant expression evaluation. by Richard Smith · 12 years ago
  27. b476a14 Factor out duplication between lvalue-to-rvalue conversions and variable by Richard Smith · 12 years ago
  28. 60e141e Implement most of N3638 (return type deduction for normal functions). by Richard Smith · 12 years ago
  29. 82f145d Don't build a call expression referring to a function which we're not allowed by Richard Smith · 12 years ago
  30. ffd015e Say 'decltype(auto)' not 'auto' as appropriate in mismatched-deduction diagnostic. by Richard Smith · 12 years ago
  31. 14f78f4 Separate out and special-case the diagnostic for 'auto' in a by Richard Smith · 12 years ago
  32. 39b60dc Fix crasher when the range in a C++ range-for loop has an ill-formed initializer. by Douglas Gregor · 12 years ago
  33. a2c3646 Implement C++1y decltype(auto). by Richard Smith · 12 years ago
  34. 65dfa2b Don't mark 'extern "C" void f(void)' as having extern storage class. by Rafael Espindola · 12 years ago
  35. a10b978 C++1y constexpr extensions, round 1: Allow most forms of declaration and by Richard Smith · 12 years ago
  36. 8404626 The 'constexpr implies const' rule for non-static member functions is gone in by Richard Smith · 12 years ago
  37. c3bf52c C++1y: Allow aggregates to have default initializers. by Richard Smith · 12 years ago
  38. 987c030 PR15755: don't drop parameter packs when dropping parameters with default by Richard Smith · 12 years ago
  39. 7974c60 DR974: Lambdas can have default arguments. by Richard Smith · 12 years ago
  40. b16ae8b Add triples to these tests since they're now using TLS, which isn't available on all targets. by Richard Smith · 12 years ago
  41. 38afbc7 Annotate flavor of TLS variable (statically or dynamically initialized) onto the AST. by Richard Smith · 12 years ago
  42. ec64244 Parsing support for thread_local and _Thread_local. We give them the same by Richard Smith · 12 years ago
  43. 1fd1e28 Force a load when creating a reference to a temporary copied from a bitfield. by Jordan Rose · 12 years ago
  44. 0b0ca47 Add support for computing the exception specification for an inheriting by Richard Smith · 12 years ago
  45. 4841ca5 C++11 inheriting constructors: support for inheriting constructor templates. by Richard Smith · 12 years ago
  46. 7e0c227 <rdar://problem/13605348> Don't consider invalid user-defined literal operators during overload resolution. by Douglas Gregor · 12 years ago
  47. 3436620 Skip transparent contexts when looking for using directives in name lookup. by Douglas Gregor · 12 years ago
  48. 484f6fa <rdar://problem/13584715> Converted constant expressions are expected to have integral values. by Douglas Gregor · 12 years ago
  49. 44b2ea9 <rdar://problem/13540899> Collect using directives from all of the semantic contexts not represented by scopes. by Douglas Gregor · 12 years ago
  50. 0ab5b4c If a defaulted special member is implicitly deleted, check whether it's by Richard Smith · 12 years ago
  51. 5b8740f Only merge down a variable type if the previous declaration was by John McCall · 12 years ago
  52. 6bed88e <rdar://problem/13317030> Consider using directives when performing unqualified name lookup into declarations contexts represented by the qualified-id but not in the actual scope hierarchy. by Douglas Gregor · 12 years ago
  53. defa32e <rdar://problem/13278115> Improve diagnostic when failing to bind an rvalue reference to an lvalue of compatible type. by Douglas Gregor · 12 years ago
  54. e79ce29 <rdar://problem/13473493> Handle 'this->' insertion recovery within trailing return types. by Douglas Gregor · 12 years ago
  55. f9223aa Remove FIXMEs: these are covered by a core issue which we don't yet implement by Richard Smith · 12 years ago
  56. 2db075b Implement special-case name lookup for inheriting constructors: member by Richard Smith · 12 years ago
  57. 6c5aaed <rdar://problem/13395022> Strip references when extracting an initializer_list's element type during application of an initialization sequence. by Douglas Gregor · 12 years ago
  58. c96cd7a Don't look outside the innermost enclosing namespace when by John McCall · 12 years ago
  59. 07b0fdc Bring inheriting constructor implementation up-to-date with current defect by Richard Smith · 12 years ago
  60. d922779 PR15290: 'this' is not permitted in the declaration of a friend function, by Richard Smith · 12 years ago
  61. 3cdbbdc PR15390: If a function returns a pointer to a function, that function type by Richard Smith · 12 years ago
  62. 4b02dff Add quotation marks to template names in diagnostics. by David Blaikie · 12 years ago
  63. 714b509 Don't crash when diagnosing path-constrained protected by John McCall · 12 years ago
  64. 4da0903 Don't crash if we try to apply 'alignas' to a variable declared with an by Richard Smith · 12 years ago
  65. 4e1125f Update to use references to attribute groups instead of listing the attributes on the call/invoke instructions. by Bill Wendling · 12 years ago
  66. 671b321 Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out of by Richard Smith · 12 years ago
  67. 637619b Only suppress instance context if a member is actually by John McCall · 12 years ago
  68. 478bbf3 Try to get buildbots to pass these tests. by Bill Wendling · 12 years ago
  69. 3bba3ef Attempt to clean up tests for non-X86 platforms. by Bill Wendling · 12 years ago
  70. 2f98ad3 Remove target-specific features. by Bill Wendling · 12 years ago
  71. f7a9da0 Modify the tests to use attribute group references instead of listing the by Bill Wendling · 12 years ago
  72. ddf117e Add a test for r174980, that we used to accept by Dmitri Gribenko · 12 years ago
  73. 1b9e8f7 Accept over-qualified constructor in MSVC emulation mode by Dmitri Gribenko · 12 years ago
  74. 66b2277 Call __cxa_begin_catch with the current exception before by John McCall · 12 years ago
  75. ce6a10e Don't check whether a friend declaration is correctly formed when instantiating, by Nick Lewycky · 12 years ago
  76. a4dc51b Add some missing diagnostics for C++11 narrowing conversions. by Richard Smith · 12 years ago
  77. be507b6 Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign. by Richard Smith · 12 years ago
  78. 1031884 Don't do delayed exception-specification checking on an invalid by Douglas Gregor · 12 years ago
  79. 29805ca Improve 'failed template argument deduction' diagnostic for the case where we by Richard Smith · 12 years ago
  80. e28f6ab Unresolved lookups can have using declarations that refer to by Douglas Gregor · 12 years ago
  81. d9bf418 [Sema] Constrain test added in r173873 with expected-error-re by David Blaikie · 12 years ago
  82. 1d87fba Provide a fixit for constexpr non-static data members. by David Blaikie · 12 years ago
  83. a367e9d Move -Wstatic-float-init fixit into a note & don't recover as if constexpr by David Blaikie · 12 years ago
  84. 485b312 PR15100: look through type sugar when determining whether we have one of the by Richard Smith · 12 years ago
  85. 2f83694 Fold tests for C++ 'main' into a single file. by Richard Smith · 12 years ago
  86. f727e1c Don't crash while printing APValues that are lvalues casted to a by Douglas Gregor · 12 years ago
  87. 3a2b7a1 Finish semantic analysis for [[carries_dependency]] attribute. by Richard Smith · 12 years ago
  88. d98f708 Tests and a minor bugfix for [dcl.attr.depend]p1 (C++11 [[carries_dependency]] by Richard Smith · 12 years ago
  89. b4b1d69 Sync 'in class initialization of static const double' extension up with GCC, by Richard Smith · 12 years ago
  90. c7629d9 Handle universal character names and Unicode characters outside of literals. by Jordan Rose · 12 years ago
  91. 22eaced Once we've collected the template arguments for a by Douglas Gregor · 12 years ago
  92. 459455b Add test for PR12938, fixed by Richard Smith in r172691 by David Blaikie · 12 years ago
  93. dca97dd Test that we correctly handle reversion of line splicing etc in raw string by Richard Smith · 12 years ago
  94. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  95. 4195637 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 12 years ago
  96. 714fcc1 Fix regression in r172376. Don't try to detect missing 'constexpr' specifiers by Richard Smith · 12 years ago
  97. 21c8fa8 PR12008: defer adding the implicit 'const' to a constexpr member function until by Richard Smith · 12 years ago
  98. 601e6e8 Fixed an assertion failure triggered by invalid code. by Enea Zaffanella · 12 years ago
  99. 0f46e64 Improve diagnostic wording for when an implicitly-deleted special member by Richard Smith · 12 years ago
  100. d538ed9 Implement AST dumper for Decls. http://llvm-reviews.chandlerc.com/D52 by Alexander Kornienko · 12 years ago