1. e5411b7 Consistently use 'needsImplicit<special member>' to determine whether we need by Richard Smith · 12 years ago
  2. 464a01a Fix the determination of whether a capture refers to an enclosing by Douglas Gregor · 12 years ago
  3. d87de7b Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type. by Eli Friedman · 12 years ago
  4. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  5. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  6. a70779f Fix crash-on-invalid. <rdar://problem/12765391>. by Eli Friedman · 12 years ago
  7. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  8. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  9. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  10. f641166 PR13098: If we're instantiating an overloaded binary operator and we could by Richard Smith · 12 years ago
  11. acf796b Store on the CXXRecordDecl whether the class has, or would have, a copy by Richard Smith · 12 years ago
  12. 9d29543 Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, by Argyrios Kyrtzidis · 12 years ago
  13. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  14. 84c7519 objective-C arc: Underline the selector when issuing by Fariborz Jahanian · 12 years ago
  15. 82c458e objective-C arc: load of a __weak object happens via call to by Fariborz Jahanian · 12 years ago
  16. d1bac8d Allow an ASTConsumer to selectively skip function bodies while parsing. Patch by Richard Smith · 12 years ago
  17. d0adeb6 Simplify checking for whether we should implicitly declare special members and by Richard Smith · 12 years ago
  18. 73ed67c PR14428: When instantiating a 'new' expression, if we had a non-dependent by Richard Smith · 12 years ago
  19. 8dbf697 Add r168519 back, but with a fix to also merge the used flag in variables. by Rafael Espindola · 12 years ago
  20. 6df81a9 Revert r168519, "Merge used flags so that we don't have to iterate on isUsed. With this change" by NAKAMURA Takumi · 12 years ago
  21. 63b6ebe Sema: Provide a valid source location when instantiating templates based on a CXXDefaultArgExpr. by Benjamin Kramer · 12 years ago
  22. 919b7e6 Merge used flags so that we don't have to iterate on isUsed. With this change by Rafael Espindola · 12 years ago
  23. 746619a Fix regression in r168477. Use canonical decl when looking for base class by Richard Smith · 12 years ago
  24. f62c690 Fix CXXRecordDecl::forallBases to not look through bases which are dependent by Richard Smith · 12 years ago
  25. 39ad0f0 SemaCXX: an enumeral type can be of character or boolean type in a C++11 enum class. Make sure we create a literal of the right type. by Benjamin Kramer · 12 years ago
  26. 0c5d005 Fix some trailing whitespace (on a blank line) to cycle/test bots. by David Blaikie · 12 years ago
  27. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  28. 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
  29. 898a7a2 Remove redundant (duplicated) check. by Dmitri Gribenko · 12 years ago
  30. 5fa6676 objective-C: Do not issue deprecated warning about implementation by Fariborz Jahanian · 12 years ago
  31. 4a9e60f Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. by Nick Lewycky · 12 years ago
  32. 8f50b24 Take into account the zero sign bit for positive numbers when computing the bit by Richard Trieu · 12 years ago
  33. 426391c A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 12 years ago
  34. 1b48633 Do not cache a pointer to ExprEvalContexts.back(). by Benjamin Kramer · 12 years ago
  35. 621ba4f Teach the uninitialized field warning about anonymous structs and union members. by Nick Lewycky · 12 years ago
  36. 5d1cf4f Fix an off-by-one error by switching < to <= in -Wtautological-constant-out-of-range-compare and added test case. by Richard Trieu · 12 years ago
  37. d653701 Per [basic.lookup.classref]p3, in an expression of the form p->~type-name, the by Richard Smith · 12 years ago
  38. ebbcd1d Fix DiagnoseBitwisePrecedence so it doesn't cast "-1" to the type by Eli Friedman · 12 years ago
  39. 526e627 Improve -Wtautological-constant-out-of-range-compare by taking into account by Richard Trieu · 12 years ago
  40. accaf19 s/tranform/transform/ by Benjamin Kramer · 12 years ago
  41. 4a03022 When we have a MemberExpr referring to an overloaded static member function, by Richard Smith · 12 years ago
  42. 49193c7 SemaTemplateDeduction.cpp: Prune two obsolete descriptions. [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
  43. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  44. 8c88953 Remove another questionable use of hasTrivial*. The relevant thing for this by Richard Smith · 12 years ago
  45. b8a8de3 Accept and pass arguments to __unknown_anytype in argument by John McCall · 12 years ago
  46. 25f071e Don't try to save the assigned value in a Objective-C property assignment by Eli Friedman · 12 years ago
  47. 97c81bf For classes that have the warn_unused_result attribute, don't apply the by Kaelyn Uhrain · 12 years ago
  48. 8682b93 Copy the decls returned by DeclContext::lookup_result to a by Argyrios Kyrtzidis · 12 years ago
  49. 044c8aa Fix some wrong-code bugs in implicitly-defined assignment operators: by Richard Smith · 12 years ago
  50. d449c79 A couple of small fixes to r167783 by Kaelyn Uhrain · 12 years ago
  51. d05df51 When filtering the list of associated namespaces so that we don't suggest people by Nick Lewycky · 12 years ago
  52. 51ceb7b Enable C++11 attribute syntax for warn_unused_result and allow it to be by Kaelyn Uhrain · 12 years ago
  53. e7ce709 Factor duplicated implicit memcpy call generation code out of copy/move by Richard Smith · 12 years ago
  54. 6ceb377 Finish reverting r167761, it's causing test failures. by Eric Christopher · 12 years ago
  55. 3a9fefe Fix more try scoping bugs introduced by r167650. by David Blaikie · 12 years ago
  56. 5ece32e Don't test for incomplete types. by Bill Wendling · 12 years ago
  57. 3078353 Per discussion on cfe-dev, re-enable suppression of -Wimplicit-fallthrough on C, but also include dialects of C++ earlier than C++11. by Ted Kremenek · 12 years ago
  58. 68fd608 Check that the input size is correct for the given constraint. by Bill Wendling · 12 years ago
  59. 229d47a Rework my implementation of circular-reference finding to not use by Douglas Gregor · 12 years ago
  60. 3e77351 Revert "Disable -Wimplicit-fallthrough when not using C++.", pending further discussion on cfe-dev. by Ted Kremenek · 12 years ago
  61. 6e3ceb5 Disable -Wimplicit-fallthrough when not using C++. by Ted Kremenek · 12 years ago
  62. 3d512d8 Handle redeclarations of catch variables in catch blocks. by David Blaikie · 12 years ago
  63. d777e28 Diagnostic circular inheritance involving dependent base classes. We by Douglas Gregor · 12 years ago
  64. c4027c8 PR14296: function parameter name collisions in function try/catch by David Blaikie · 12 years ago
  65. 87da0b7 -Wobjc-literal-compare: look through implicit casts. by Jordan Rose · 12 years ago
  66. a67d503 PR13788: Don't perform checks on the initializer of a dependently-typed by Richard Smith · 12 years ago
  67. 1a52a4d Use isInvalidDecl() instead of isStatic() as suggested by dblaikie. by Nico Weber · 12 years ago
  68. e0ff690 Don't crash on calling static member overloaded operator, PR14120 by Nico Weber · 12 years ago
  69. 45a37da Fix a bug I found while preparing my devmtg talk: When passing NULL to a by Matt Beaumont-Gay · 12 years ago
  70. 88adb98 Avoid to write function name in comment. Thanks to Dmitri Gribenko. by Abramo Bagnara · 12 years ago
  71. eae859a Readded line removed by mistake. by Abramo Bagnara · 12 years ago
  72. 4c5750e Fixed converted ConstantArrayTypeLoc range. Added a missing testcase for ConstructorDecl source range. by Abramo Bagnara · 12 years ago
  73. e81b43b PR14284: crash on ext-valid returning NULL from a void function by David Blaikie · 12 years ago
  74. 7b89ab7 Reduce nesting. No functionality change. by Nico Weber · 12 years ago
  75. 910515b When template deduction fails on a derived class, try a template deduction on by Richard Trieu · 12 years ago
  76. ce2661f PR11851 (and duplicates): Whenever a constexpr function is referenced, by Richard Smith · 12 years ago
  77. b68ec6b Add missing check to warning for packed attribute. PR14259. by Eli Friedman · 12 years ago
  78. 5305641 PR13552: Fix the end location of a CXXNewExpr. by David Blaikie · 12 years ago
  79. 70a0189 Fix assertion failure with auto and nested initializer list; PR14272. by Eli Friedman · 12 years ago
  80. 4b7631b Put the usage-directive inside the nearest namespace or TU decl. We don't want by Nick Lewycky · 12 years ago
  81. b57ce4e Address review comments for r167358: explicitly check for CK_BitCast instead of by Dmitri Gribenko · 12 years ago
  82. 5a24980 Handle CK_NullToPointer casts in -Wtype-safety properly. Fixes PR14249. by Dmitri Gribenko · 12 years ago
  83. aee56fa Update the front end to use minsize attribute by Quentin Colombet · 12 years ago
  84. 889b99e Correctly reject gotos in function-level try blocks. PR14225. by Eli Friedman · 12 years ago
  85. e63aedd Address Jordan's review: comments, spaces. by Anna Zaks · 12 years ago
  86. 8e68ef0 Revert commit r166946 by Quentin Colombet · 12 years ago
  87. 9568f0c Partially roll back r166898; it exposed a bug in the standard. by Richard Smith · 12 years ago
  88. ba927d9 Make forcesizeopt attribute available to the end user by Quentin Colombet · 12 years ago
  89. c0e4445 -Warc-repeated-use-of-weak: allow single reads in loops from local variables. by Jordan Rose · 12 years ago
  90. c36e359 Revert functional part of r166896 and just suppress -Wunneeded-internal-declaration for reference types for now. This needs more work; the cases we currently miss are a bit random. by Richard Smith · 12 years ago
  91. 1432a43 When determining whether to try evaluating the initializer of a variable, check by Richard Smith · 12 years ago
  92. 623ef4b In -Wunneeded-internal-declaration, suppress the warning for variables which by Richard Smith · 12 years ago
  93. 644e90a Fix invalid jump scopes again. This time without trying to find out if an by Rafael Espindola · 12 years ago
  94. a92afb6 Revert 166876 while I debug a bootstrap problem. by Rafael Espindola · 12 years ago
  95. ff8f967 Reapply 166855 with an early exit on null QualTypes. by Rafael Espindola · 12 years ago
  96. 029d284 Revert r166855. I can reproduce the bootstrap failure and have a testcase by Rafael Espindola · 12 years ago
  97. 76b5d24 Fix cases where we were not producing an error when a computed goto could by Rafael Espindola · 12 years ago
  98. 50d46ca Recommit Eric's code to validate ASM string's constraints and modifiers. by Bill Wendling · 12 years ago
  99. 802f937 [ms-inline asm] Add support for field lookup in the SemaCallback. Patch by Eli. by Chad Rosier · 12 years ago
  100. c6cd9af Revert r166647 to rethink the patch... by Bill Wendling · 12 years ago