1. abe75ef Handle static functions being redeclared in function scope. by Rafael Espindola · 12 years ago
  2. b9725cf Mark all subsequent decls used. by Rafael Espindola · 12 years ago
  3. ef3c694 Clear the LV cache when setting the instantiated from link. Fixes pr14835. by Rafael Espindola · 12 years ago
  4. 774d8b4 PR14838: When a member reference is bound to a temporary, don't forget to by Richard Smith · 12 years ago
  5. 57cbb14 Use the C++11 POD definition in C++11 mode to determine whether one by Douglas Gregor · 12 years ago
  6. 6acc4bc Assert that redeclarations have the same linkage. by Rafael Espindola · 12 years ago
  7. 6769ccb Warn on unused auto variables. by Rafael Espindola · 12 years ago
  8. 87b8127 Don't warn on unused member functions that are extern because of a typedef. by Rafael Espindola · 12 years ago
  9. de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
  10. 9f0c692 Don't get confused if a extern "C" builtin function is redeclared without by Rafael Espindola · 12 years ago
  11. 9f40954 Don't warn for undefined but used decls that are external because of a typedef. by Rafael Espindola · 12 years ago
  12. 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
  13. e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
  14. 137d662 Fix a regression from the previous commit. by Rafael Espindola · 12 years ago
  15. 485458a Use the most recent redecl to decide if it is needed. by Rafael Espindola · 12 years ago
  16. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  17. a9990e8 Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. by Argyrios Kyrtzidis · 12 years ago
  18. 6febf12 Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, by Eli Friedman · 12 years ago
  19. 206491d Add missing check for error return from DefaultLvalueConversion. Fixes <rdar://problem/12857416>. by Eli Friedman · 12 years ago
  20. fff3248 Virtual method overrides can no longer have mismatched calling conventions. This fixes PR14339. by Aaron Ballman · 12 years ago
  21. 2801d9a Fix overload resolution for the initialization of a multi-dimensional by Richard Smith · 12 years ago
  22. bc2a35d Finish implementing 'selected constructor' rules for triviality in C++11. In by Richard Smith · 12 years ago
  23. 93699d2 Thread-safety analysis: check member access on guarded non-primitive types. by DeLesley Hutchins · 12 years ago
  24. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  25. 8fda1ab clang/test: Remove "REQUIRES:LP64" in two tests. Each of them have explicit triple. by NAKAMURA Takumi · 12 years ago
  26. 4242740 Sema: Don't emit a warning when __func__ is used in a lambda outside of a function. by Benjamin Kramer · 12 years ago
  27. 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
  28. 91e2061 Thread-safety analysis: check locks on method calls, operator=, and by DeLesley Hutchins · 12 years ago
  29. d87de7b Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type. by Eli Friedman · 12 years ago
  30. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  31. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  32. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  33. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  34. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  35. 1c80b52 Add a basic testcase for the "variable is not needed" warning and one that by Rafael Espindola · 12 years ago
  36. 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
  37. 8f50b24 Take into account the zero sign bit for positive numbers when computing the bit by Richard Trieu · 12 years ago
  38. 621ba4f Teach the uninitialized field warning about anonymous structs and union members. by Nick Lewycky · 12 years ago
  39. 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
  40. d653701 Per [basic.lookup.classref]p3, in an expression of the form p->~type-name, the by Richard Smith · 12 years ago
  41. 526e627 Improve -Wtautological-constant-out-of-range-compare by taking into account by Richard Trieu · 12 years ago
  42. b6ad9b1 In ExpressionEvaluationContextRecord manage LambdaMangle with a shared by Argyrios Kyrtzidis · 12 years ago
  43. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  44. 97c81bf For classes that have the warn_unused_result attribute, don't apply the by Kaelyn Uhrain · 12 years ago
  45. d449c79 A couple of small fixes to r167783 by Kaelyn Uhrain · 12 years ago
  46. 51ceb7b Enable C++11 attribute syntax for warn_unused_result and allow it to be by Kaelyn Uhrain · 12 years ago
  47. 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
  48. e0ff690 Don't crash on calling static member overloaded operator, PR14120 by Nico Weber · 12 years ago
  49. 45a37da Fix a bug I found while preparing my devmtg talk: When passing NULL to a by Matt Beaumont-Gay · 12 years ago
  50. e81b43b PR14284: crash on ext-valid returning NULL from a void function by David Blaikie · 12 years ago
  51. b578aee PR12713 - crash on invalid due to unmatched parens in decltype by David Blaikie · 12 years ago
  52. ce2661f PR11851 (and duplicates): Whenever a constexpr function is referenced, by Richard Smith · 12 years ago
  53. 70a0189 Fix assertion failure with auto and nested initializer list; PR14272. by Eli Friedman · 12 years ago
  54. f64231e Teach Clang parser to reject C++11 attributes that appertain to declaration specifiers. by Michael Han · 12 years ago
  55. 95b66fc Delete comment I forgot to delete in my last change. by Nico Weber · 12 years ago
  56. 776b7ac Use Richard's BE_THE_HEADER trick to simplify a test. No intended behavior change. by Nico Weber · 12 years ago
  57. 161db02 Thread safety analysis: Fixed ICE caused by double delete when late parsed by DeLesley Hutchins · 12 years ago
  58. cef3a7b Change diagnostics for enums with fixed underlying type so in C++98 mode, we cite C++11. by Eli Friedman · 12 years ago
  59. ef4b666 Fix an incorrect assert, the LHS can be an LValue. by Rafael Espindola · 12 years ago
  60. 889b99e Correctly reject gotos in function-level try blocks. PR14225. by Eli Friedman · 12 years ago
  61. c39a2b0 Update test case. by Ted Kremenek · 12 years ago
  62. 9568f0c Partially roll back r166898; it exposed a bug in the standard. by Richard Smith · 12 years ago
  63. 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
  64. 1432a43 When determining whether to try evaluating the initializer of a variable, check by Richard Smith · 12 years ago
  65. 623ef4b In -Wunneeded-internal-declaration, suppress the warning for variables which by Richard Smith · 12 years ago
  66. 644e90a Fix invalid jump scopes again. This time without trying to find out if an by Rafael Espindola · 12 years ago
  67. 1a7b2e9 Add a testcase from the previous bootstrap problem. by Rafael Espindola · 12 years ago
  68. a92afb6 Revert 166876 while I debug a bootstrap problem. by Rafael Espindola · 12 years ago
  69. ff8f967 Reapply 166855 with an early exit on null QualTypes. by Rafael Espindola · 12 years ago
  70. 3954d39 Add a reduced testcase of the last bootstrap failure. by Rafael Espindola · 12 years ago
  71. 029d284 Revert r166855. I can reproduce the bootstrap failure and have a testcase by Rafael Espindola · 12 years ago
  72. b21c11d Add a test case for the stack overflow in rdar://12542261 by Argyrios Kyrtzidis · 12 years ago
  73. 76b5d24 Fix cases where we were not producing an error when a computed goto could by Rafael Espindola · 12 years ago
  74. 1e58469 In Parser::ParseDecltypeSpecifier, make sure the end location it returns by Argyrios Kyrtzidis · 12 years ago
  75. e925322 PR14171: Don't crash if we hit one of the paths where GetFullTypeForDeclarator by Richard Smith · 12 years ago
  76. 39e1776 Fix false positive in -Wunused-variable when a ctor call make involve cleanups. by David Blaikie · 12 years ago
  77. 9dd686d Update regression tests for r166617. by Eli Friedman · 12 years ago
  78. a45451d Don't print scope qualifiers for references to a type defined locally in a function. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  79. 6c8b649 Add an additional test for namespaces and -Wmissing-variable-declarations. Move C++ test into SemaCXX. by Eli Friedman · 12 years ago
  80. 946fa65 Add a test showing that nodebug is accepted in methods too. Patch by by Rafael Espindola · 12 years ago
  81. a7a38cb Fix pretty-printing pseudo-destructor calls. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  82. 84c3b97 Fix -Wunused-value to not warn on expressions that have unresolved lookups due by Matt Beaumont-Gay · 12 years ago
  83. b5b37d1 Ugly ugly hack for libstdc++-4.6 and libstdc++-4.7 compatibility. These by Richard Smith · 12 years ago
  84. efeeccf Unrevert r166268, reverted in r166272, with a fix for the issue which Nick by Richard Smith · 12 years ago
  85. b687f3b Fix __builtin_va_arg assertion failure in ARM AAPCS. by Logan Chien · 12 years ago
  86. 5016a70 DR1472: A reference isn't odr-used if it has preceding initialization, by Richard Smith · 12 years ago
  87. e1aebe1 Pretty-print a ParenListExpr in a variable initializer correctly. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  88. 8e8fb3b Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnosticConsumer, make the necessary adjustment to 580 test-cases which will henceforth require this new directive. by Andy Gibbs · 12 years ago
  89. 79cf161 Revert r166268, this fix for a crash-on-invalid introduced a rejects-valid. by Nick Lewycky · 12 years ago
  90. 80ddc31 PR14124: When performing template instantiation of a qualified-id outside of a by Richard Smith · 12 years ago
  91. 5f75068 Handle diamond inheritance in -Woverloaded-virtual. by David Blaikie · 12 years ago
  92. 25c9bc1 Use the type as written when pretty-printing C-style casts. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  93. eafa9d4 Remove check which incorrectly suppressed printing an identifier in type printing. Patch by Benoit Perrot. by Eli Friedman · 12 years ago
  94. d03ef04 Fix AST pretty-printing for C++ new expressions with placement arguments with default values. by Eli Friedman · 12 years ago
  95. 9be36ab DR1535: only potentially-evaluated typeid expressions are disallowed in constant by Richard Smith · 12 years ago
  96. 76398e5 Fix -Woverloaded-virtual when the using statement refers to a base declaration of a virtual function. by David Blaikie · 12 years ago
  97. bea52da Adds couple of missing warning flags so warnings can be turned by Fariborz Jahanian · 12 years ago
  98. 64fe36e Update test FIXME: The '[]' in 'delete []' is never part of a lambda. by Richard Smith · 12 years ago
  99. 16de3db Move test to a more appropriate place. by Eli Friedman · 12 years ago
  100. 9b29f4f Implement GCC's -Wint-to-pointer-cast. by David Blaikie · 12 years ago