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