1. e0cf31d PR12962: Fix a rare use after free when collecting virtual overrides. by Benjamin Kramer · 12 years ago
  2. 350e956 -Wdeprecated warning to include reference (as a note) by Fariborz Jahanian · 12 years ago
  3. a189d89 Don't offer '[[clang::fallthrough]];' fix-it when a fall-through occurs to a by Alexander Kornienko · 12 years ago
  4. 4059da8 A minor tweak to the new volatile lvalue warning: don't warn on "(void)x", where "x" refers to a local variable. This should silence a useless warning in compiler-rt and other places. by Eli Friedman · 12 years ago
  5. 8ab10aa DR1152 / PR12931 / PR6177: A candidate function which requires binding a const by Richard Smith · 12 years ago
  6. a611506 Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conceptually, this is part of -Wunused-value, but I added a separate flag -Wunused-volatile-lvalue so it doesn't get turned off by accident with -Wno-unused-value. I also made a few minor improvements to existing unused value warnings in the process. <rdar://problem/11516811>. by Eli Friedman · 12 years ago
  7. 11d1a69 Error when using typeid() with -fno-rtti. PR 12888. by Nico Weber · 12 years ago
  8. 25582fc Recover better from a missing 'typename' in a function template definition. by Richard Smith · 12 years ago
  9. def0762 Include the correct conversion context locations for condition expressions. by David Blaikie · 12 years ago
  10. 9fb1ac5 Don't warn when NULL is used within a macro but its conversion is outside a macro. by David Blaikie · 12 years ago
  11. 8f0a7e7 If we see a declaration which is either missing a type or has a malformed type, by Richard Smith · 12 years ago
  12. 827adaf Don't use the implicit int rule for error recovery in C++. Instead, try to by Richard Smith · 12 years ago
  13. be0ee87 Improve some of the conversion warnings to fire on conversion to bool. by David Blaikie · 12 years ago
  14. c608c3c Further improvement to wording of overload resolution diagnostics, and including by Richard Smith · 12 years ago
  15. dbbeccc PR12826: Converting an lvalue to an xvalue is a no-op conversion, not an lvalue-to-rvalue conversion. by Richard Smith · 12 years ago
  16. 3003e1d Fold the six functions checking explicitly-defaulted special member functions by Richard Smith · 12 years ago
  17. f7b8056 PR11857: When the wrong number of arguments are provided for a function by Richard Smith · 12 years ago
  18. f6278e5 Pull some cases of initialization with self-reference warnings out of by Richard Trieu · 12 years ago
  19. f63eee7 Stop AltiVec parsing from going down the 'implicit int' codepath as part of its by Richard Smith · 12 years ago
  20. 83a22ec Recover properly if a class member declaration starts with a scope specifier by Richard Smith · 12 years ago
  21. 7e9f8af Update the SelfReferenceChecker. Refactored some of the visitor methods. by Richard Trieu · 12 years ago
  22. 0a84e7a Updating the test case based on previous patch by Aaron Ballman · 12 years ago
  23. 21eb6d4 Detecting illegal instantiations of abstract types when using a function-style cast. Fixed PR12658. by Aaron Ballman · 12 years ago
  24. f108c63 A conversion operator in a base class shouldn't hide another conversion operator by Richard Smith · 12 years ago
  25. bbba25f Thread safety analysis: check for LOCKABLE attribute on base classes. by DeLesley Hutchins · 12 years ago
  26. 9087599 Skip checking for infinite for-loops if there are global or static variables by Richard Trieu · 12 years ago
  27. e0d3b4c Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between by Richard Smith · 12 years ago
  28. 82129e2 Add commas to for loop warning to separate variable names. by Richard Trieu · 12 years ago
  29. 60f2024 Thread safety analysis: additional support for smart pointers in lock expressions. by DeLesley Hutchins · 12 years ago
  30. f26efd7 Thread Safety Analysis: fixed attribute handling for lock_returned attribute. by DeLesley Hutchins · 12 years ago
  31. 6deb820 Disable our non-standard delayed parsing of exception specifications. Delaying by Richard Smith · 12 years ago
  32. 12f3297 Try harder to recognize hidden tag type names in potential declarations instead by Kaelyn Uhrain · 12 years ago
  33. 4e31b4d Extend the error about incompatible visibility attributes in different by Rafael Espindola · 12 years ago
  34. ca2e1b7 Workaround a miscompile in 483.xalancbmk while we figure it out. by David Blaikie · 12 years ago
  35. 5729672 PR12710 - broken default argument handling for templates. by David Blaikie · 12 years ago
  36. 8d59dee My first effort to do this more subtly failed, so elaborately by John McCall · 12 years ago
  37. aa54986 Remove -Wc++98-compat warning for an outrageously-rare circumstance of 'this' by Richard Smith · 12 years ago
  38. c1c0725 Fix PR12378: provide conversion warnings on default args of function templates by David Blaikie · 12 years ago
  39. 694e796 Add -Wloop-analysis. This warning will fire on for loops which the variables by Richard Trieu · 12 years ago
  40. 98f71aa C++11 weakens the requirement for types used with offsetof from POD to standard layout type. by Benjamin Kramer · 12 years ago
  41. 152f6b7 Rename isPODType (using the C++98 rules) into isCXX98PODType and make isPODType decide which one to use based on LangOptions. by Benjamin Kramer · 12 years ago
  42. 470360d Revert "Use the C++11 definition of PODness for __is_pod in C++11 mode." by Benjamin Kramer · 12 years ago
  43. 046e869 Use the C++11 definition of PODness for __is_pod in C++11 mode. by Benjamin Kramer · 12 years ago
  44. a1366cb PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. by Richard Smith · 12 years ago
  45. d601c62 Add test case for rdar://11293995 by Argyrios Kyrtzidis · 12 years ago
  46. 1de9d7d Fix a crash-on-invalid where the constant evaluator would try to by John McCall · 12 years ago
  47. a43ea64 PR12647: An alias template instantiation which occurs in a SFINAE context is by Richard Smith · 12 years ago
  48. 6e4a0af PR12660: Don't crash when initializing a const reference from a braced init list by Richard Smith · 12 years ago
  49. 86e6fdc Two missing -Wc++98-compat warnings, for null pointers as non-type template by Richard Smith · 12 years ago
  50. 2b90f76 Add an error message with fixit hint for changing '.' to '->'. by Kaelyn Uhrain · 12 years ago
  51. 64b111e Thread safety analysis: refactor test cases so that the style is consistent. by DeLesley Hutchins · 12 years ago
  52. aed9ea3 Thread safety analysis: support the use of pt_guarded_by attributes by DeLesley Hutchins · 12 years ago
  53. 79747e0 Thread-safety analysis: support new "pointer to member" syntax for by DeLesley Hutchins · 12 years ago
  54. a4156b8 Fix regression in r154844. If necessary, defer computing adjusted destructor by Richard Smith · 12 years ago
  55. 7d90fe5 Fix a QoI bug reported by a user. by Matt Beaumont-Gay · 12 years ago
  56. ae519c4 Thread safety analysis: split warnings into two groups: attribute warnings by DeLesley Hutchins · 12 years ago
  57. 03544fc Add missing -Wc++98-compat warnings for initializer list initializations which by Richard Smith · 12 years ago
  58. 74e2fc3 Implement the last part of C++ [class.mem]p2, delaying the parsing of by Douglas Gregor · 12 years ago
  59. cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 12 years ago
  60. 030c7e9 Fix tests that weren't actually verifying anything. by David Blaikie · 12 years ago
  61. fe58720 PR12226: don't generate wrong code if a braced string literal is used to by Richard Smith · 12 years ago
  62. a1c4f7c PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 12 years ago
  63. 97b57a2 When we're flagging a protected scope to prevent jumps into the by John McCall · 12 years ago
  64. c02af35 Add -Wuninitialized test for C++11 lambdas. by Ted Kremenek · 12 years ago
  65. f7ecc30 Compute standard conversion sequences for conversions to atomic by Douglas Gregor · 12 years ago
  66. 994d73f Part of PR10101: after a parse error in a declaration, try harder to find the by Richard Smith · 12 years ago
  67. 69a30b8 When we determine that an initialization sequence failed due to an by Douglas Gregor · 12 years ago
  68. 6ee326a Disambiguation of '[[': by Richard Smith · 12 years ago
  69. 83cad45 Thread safety analysis: downgraded requirement that mutex expressions refer to a lockable type from error to warning. by DeLesley Hutchins · 12 years ago
  70. 0121183 Test for r154189/PR12481 by Matt Beaumont-Gay · 12 years ago
  71. cf2fa2f Fixed scoping error for late parsed attributes in nested classes. by DeLesley Hutchins · 12 years ago
  72. bf9658c Point the caret at the error for the 'expected namespace name' diagnostic in by Richard Smith · 12 years ago
  73. a85cf39 Improve diagnostics for invalid use of non-static members / this: by Richard Smith · 12 years ago
  74. 4fd05dc Add triples to these tests to keep them working on Windows, by Richard Smith · 12 years ago
  75. 69f50e7 Fix assertions and wrong output from StmtPrinter's string literal printing. by Richard Smith · 12 years ago
  76. e31b8fb Enable warn_impcast_literal_float_to_integer by default. by David Blaikie · 12 years ago
  77. 5b4bf13 Allow a conversion from the empty initializer list {} to an by Douglas Gregor · 12 years ago
  78. b4051e7 Implement C++11 [temp.arg.nontype]'s permission to use the address of an object by Richard Smith · 12 years ago
  79. d280389 When performing template argument deduction for an initializer list, by Douglas Gregor · 12 years ago
  80. 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 12 years ago
  81. 5bdaac5 Finish PR10217: Ensure we say that a special member was implicitly, not by Richard Smith · 12 years ago
  82. 70e24fc Properly handle explicit constructors in list-initialization. Fixes PR12120. by Sebastian Redl · 12 years ago
  83. 6c4c36c PR10217: Provide diagnostics explaining why an implicitly-deleted special by Richard Smith · 12 years ago
  84. 6960587 Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 12 years ago
  85. f78c0f9 Even more careful consideration of C++11 13.3.3.1p4. Fixes PR12241. by Sebastian Redl · 12 years ago
  86. 412e0cc When we see 'Class(X' or 'Class::Class(X' and we suspect that it names a by Richard Smith · 12 years ago
  87. 0724b7c Add a special-case diagnostic for one of the more obnoxious special cases of by Richard Smith · 12 years ago
  88. 38f0df3 Handle instantiations of redeclarations of forward-declared enumerations within by Richard Smith · 12 years ago
  89. 4ca93d9 Delay checking of dependent underlying types for redeclarations of member by Richard Smith · 12 years ago
  90. f602806 Teach APValue printer to print boolean 0 and 1 as 'false' and 'true'. Fix up by Richard Smith · 12 years ago
  91. 3343fad When defining a forward-declared enum, don't try to attach the definition to by Richard Smith · 12 years ago
  92. 550f223 Fix broken CFG when an initializer is a statement expression that starts with a while loop (PR 12325). by Ted Kremenek · 12 years ago
  93. 4c7a6c6 Test case for rdar://problem/11055105, a bug with the instantiation by John McCall · 12 years ago
  94. 1cd89c4 More careful consideration of C++11 13.3.3.1p4. Fixes PR12257. by Sebastian Redl · 12 years ago
  95. ca89371 Fix the other place where C++98 work for initializer lists was necessary. by Sebastian Redl · 12 years ago
  96. 4cf2253 Fix crash when querying the CFG reported when using the thread safety analysis by Ted Kremenek · 12 years ago
  97. 3e280b5 Add the missing compatibility warning for braced initializers as default arguments. by Sebastian Redl · 12 years ago
  98. 42acead Diagnose tag and class template declarations with qualified by Douglas Gregor · 12 years ago
  99. b136049 Suppress macro expansion of NULL in NULL warnings. by David Blaikie · 12 years ago
  100. 9c6fde5 Skip through transparent contexts when deciding where to add a friend function. by Nick Lewycky · 12 years ago