1. c5f7d6a Add a -pedantic warning: an anonymous union within an anonymous union is not by Richard Smith · 12 years ago
  2. 5250e2b Decl printer: fix CXXConstructExpr with implicit default argument by Dmitri Gribenko · 12 years ago
  3. 98bfbf5 Fix mismatch between pointer and pointee type when diagnosing an incorrect by Richard Smith · 12 years ago
  4. 25cf8ab Revert r172285 (suppressing a 'redundant' -Wc++98-compat warning) and add a by Richard Smith · 12 years ago
  5. c6dcea9 Silence unintended fallthrough diagnostic on a case label preceded with a normal label. by Alexander Kornienko · 12 years ago
  6. e992ed1 Don't suggest to insert [[clang::fallthrough]] before empty cases. Fix for multiple case labels. by Alexander Kornienko · 12 years ago
  7. b4b1d69 Sync 'in class initialization of static const double' extension up with GCC, by Richard Smith · 12 years ago
  8. 0a04cbd FileCheck'ize test/SemaCXX/qualified-names-print.cpp and merge it to other by Dmitri Gribenko · 12 years ago
  9. 51d8c52 PR14922: when printing an attribute, use the real syntax of the attribute (GNU, C++11, MS Declspec) instead of hardcoded GNU syntax. by Michael Han · 12 years ago
  10. 9b7ea0d Start checking nonnull (as well as format and argument_with_type_tag) on by Nick Lewycky · 12 years ago
  11. 630f4bb Implement -Wvla correctly by Dmitri Gribenko · 12 years ago
  12. 3edf387 Make __attribute__((nonnull)) use the general expression evaluator to search for by Nick Lewycky · 12 years ago
  13. 3a344f9 Fix a bug in VarDecl::getSourceRange() for static member arrays with an element by Nico Weber · 12 years ago
  14. 39371b8 Reapply r172878 with test case. by Ted Kremenek · 12 years ago
  15. 77fd3c0 -Wuninitialized: warn about uninitialized values resulting from ?: that evaluate to lvalues (in C++). by Ted Kremenek · 12 years ago
  16. 0ecc2e9 Thread-safety analysis: ignore edges from throw expressions in CFG. by DeLesley Hutchins · 12 years ago
  17. ba57183 Some builtins do not evaluate their arguments. Teach EvaluatedExprVisitor not by Richard Smith · 12 years ago
  18. 995e4a7 -Wunsequenced: if the LHS of an &&, || or ?: is not constant, check for by Richard Smith · 12 years ago
  19. ee000bb Improve -Wreorder to handle cases of anonymous class member ordering by David Blaikie · 12 years ago
  20. 6c3af3d Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 12 years ago
  21. 4d8a33b Delay linkage checks when validating the weakref attribute. by Rafael Espindola · 12 years ago
  22. afb7ce3 Fixes crash when illegal function definitions are deleted or defaulted. Fixes PR14577. by Aaron Ballman · 12 years ago
  23. 2a5bb50 Check for internal weak decls after merging. by Rafael Espindola · 12 years ago
  24. 02d65ee Don't crash when binding a reference to a temporary pointer created from by Richard Smith · 12 years ago
  25. a121eb3 PR14950: Fix out-of-bounds function parameter access in literal operator lookup. by Richard Smith · 12 years ago
  26. 5c52166 Fix behavior of [[gnu::]] function attributes. Per g++'s behavior, these by Richard Smith · 12 years ago
  27. fe1d594 clang/test/SemaCXX/cxx11-gnu-attrs.cpp: Add explicit -triple x86_64-unknown-unknown, or it doesn't work for targetting win32. by NAKAMURA Takumi · 12 years ago
  28. d6e7fae Add extra tests for [[gnu::...]] attributes, missed from r172382. by Richard Smith · 12 years ago
  29. 508276c bar by Rafael Espindola · 12 years ago
  30. 7a525ac Fix a regression from 171193: main cannot be overloaded. by Rafael Espindola · 12 years ago
  31. 193649c Only produce one -Wc++98-compat warning when initializing a reference from an init list with multiple elements. by Richard Smith · 12 years ago
  32. 013539c Add a test from pr14898. by Rafael Espindola · 12 years ago
  33. 294ddc6 Reject incompatible redeclarations of extern C symbols. by Rafael Espindola · 12 years ago
  34. 601e6e8 Fixed an assertion failure triggered by invalid code. by Enea Zaffanella · 12 years ago
  35. abe75ef Handle static functions being redeclared in function scope. by Rafael Espindola · 12 years ago
  36. b9725cf Mark all subsequent decls used. by Rafael Espindola · 12 years ago
  37. ef3c694 Clear the LV cache when setting the instantiated from link. Fixes pr14835. by Rafael Espindola · 12 years ago
  38. 774d8b4 PR14838: When a member reference is bound to a temporary, don't forget to by Richard Smith · 12 years ago
  39. 57cbb14 Use the C++11 POD definition in C++11 mode to determine whether one by Douglas Gregor · 12 years ago
  40. 6acc4bc Assert that redeclarations have the same linkage. by Rafael Espindola · 12 years ago
  41. 6769ccb Warn on unused auto variables. by Rafael Espindola · 12 years ago
  42. 87b8127 Don't warn on unused member functions that are extern because of a typedef. by Rafael Espindola · 12 years ago
  43. de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
  44. 9f0c692 Don't get confused if a extern "C" builtin function is redeclared without by Rafael Espindola · 12 years ago
  45. 9f40954 Don't warn for undefined but used decls that are external because of a typedef. by Rafael Espindola · 12 years ago
  46. 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
  47. e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
  48. 137d662 Fix a regression from the previous commit. by Rafael Espindola · 12 years ago
  49. 485458a Use the most recent redecl to decide if it is needed. by Rafael Espindola · 12 years ago
  50. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  51. a9990e8 Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. by Argyrios Kyrtzidis · 12 years ago
  52. 6febf12 Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, by Eli Friedman · 12 years ago
  53. 206491d Add missing check for error return from DefaultLvalueConversion. Fixes <rdar://problem/12857416>. by Eli Friedman · 12 years ago
  54. fff3248 Virtual method overrides can no longer have mismatched calling conventions. This fixes PR14339. by Aaron Ballman · 12 years ago
  55. 2801d9a Fix overload resolution for the initialization of a multi-dimensional by Richard Smith · 12 years ago
  56. bc2a35d Finish implementing 'selected constructor' rules for triviality in C++11. In by Richard Smith · 12 years ago
  57. 93699d2 Thread-safety analysis: check member access on guarded non-primitive types. by DeLesley Hutchins · 12 years ago
  58. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  59. 8fda1ab clang/test: Remove "REQUIRES:LP64" in two tests. Each of them have explicit triple. by NAKAMURA Takumi · 12 years ago
  60. 4242740 Sema: Don't emit a warning when __func__ is used in a lambda outside of a function. by Benjamin Kramer · 12 years ago
  61. d5e8394 Don't use dyn_cast on a Type* which might not be canonical. Fixes an extremely obscure record layout bug. by Richard Smith · 12 years ago
  62. 91e2061 Thread-safety analysis: check locks on method calls, operator=, and by DeLesley Hutchins · 12 years ago
  63. d87de7b Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type. by Eli Friedman · 12 years ago
  64. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  65. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  66. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  67. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  68. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  69. 1c80b52 Add a basic testcase for the "variable is not needed" warning and one that by Rafael Espindola · 12 years ago
  70. 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
  71. 8f50b24 Take into account the zero sign bit for positive numbers when computing the bit by Richard Trieu · 12 years ago
  72. 621ba4f Teach the uninitialized field warning about anonymous structs and union members. by Nick Lewycky · 12 years ago
  73. 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
  74. d653701 Per [basic.lookup.classref]p3, in an expression of the form p->~type-name, the by Richard Smith · 12 years ago
  75. 526e627 Improve -Wtautological-constant-out-of-range-compare by taking into account by Richard Trieu · 12 years ago
  76. b6ad9b1 In ExpressionEvaluationContextRecord manage LambdaMangle with a shared by Argyrios Kyrtzidis · 12 years ago
  77. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  78. 97c81bf For classes that have the warn_unused_result attribute, don't apply the by Kaelyn Uhrain · 12 years ago
  79. d449c79 A couple of small fixes to r167783 by Kaelyn Uhrain · 12 years ago
  80. 51ceb7b Enable C++11 attribute syntax for warn_unused_result and allow it to be by Kaelyn Uhrain · 12 years ago
  81. 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
  82. e0ff690 Don't crash on calling static member overloaded operator, PR14120 by Nico Weber · 12 years ago
  83. 45a37da Fix a bug I found while preparing my devmtg talk: When passing NULL to a by Matt Beaumont-Gay · 12 years ago
  84. e81b43b PR14284: crash on ext-valid returning NULL from a void function by David Blaikie · 12 years ago
  85. b578aee PR12713 - crash on invalid due to unmatched parens in decltype by David Blaikie · 12 years ago
  86. ce2661f PR11851 (and duplicates): Whenever a constexpr function is referenced, by Richard Smith · 12 years ago
  87. 70a0189 Fix assertion failure with auto and nested initializer list; PR14272. by Eli Friedman · 12 years ago
  88. f64231e Teach Clang parser to reject C++11 attributes that appertain to declaration specifiers. by Michael Han · 12 years ago
  89. 95b66fc Delete comment I forgot to delete in my last change. by Nico Weber · 12 years ago
  90. 776b7ac Use Richard's BE_THE_HEADER trick to simplify a test. No intended behavior change. by Nico Weber · 12 years ago
  91. 161db02 Thread safety analysis: Fixed ICE caused by double delete when late parsed by DeLesley Hutchins · 12 years ago
  92. cef3a7b Change diagnostics for enums with fixed underlying type so in C++98 mode, we cite C++11. by Eli Friedman · 12 years ago
  93. ef4b666 Fix an incorrect assert, the LHS can be an LValue. by Rafael Espindola · 12 years ago
  94. 889b99e Correctly reject gotos in function-level try blocks. PR14225. by Eli Friedman · 12 years ago
  95. c39a2b0 Update test case. by Ted Kremenek · 12 years ago
  96. 9568f0c Partially roll back r166898; it exposed a bug in the standard. by Richard Smith · 12 years ago
  97. 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
  98. 1432a43 When determining whether to try evaluating the initializer of a variable, check by Richard Smith · 12 years ago
  99. 623ef4b In -Wunneeded-internal-declaration, suppress the warning for variables which by Richard Smith · 12 years ago
  100. 644e90a Fix invalid jump scopes again. This time without trying to find out if an by Rafael Espindola · 12 years ago