From: Richard Trieu Date: Fri, 5 Aug 2016 21:02:34 +0000 (+0000) Subject: Fix false positive in -Wunsequenced and templates. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ff0fb57b3a6405b3fc75393f007af59495f098f;p=clang Fix false positive in -Wunsequenced and templates. For builtin logical operators, there is a well-defined ordering of argument evaluation. For overloaded operator of the same type, there is no argument evaluation order, similar to other function calls. When both are present, uninstantiated templates with an operator&& is treated as an unresolved function call. Unresolved function calls are treated as normal function calls, and may result in false positives when the builtin logical operator is used. Have the unsequenced checker ignore dependent expressions to avoid this false positive. The check also happens in template instantiations to catch when the overloaded operator is used. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277866 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 12f3923f8e..2ca3d12edb 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -9427,7 +9427,8 @@ void Sema::CheckUnsequencedOperations(Expr *E) { void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc, bool IsConstexpr) { CheckImplicitConversions(E, CheckLoc); - CheckUnsequencedOperations(E); + if (!E->isInstantiationDependent()) + CheckUnsequencedOperations(E); if (!IsConstexpr && !E->isValueDependent()) CheckForIntOverflow(E); } diff --git a/test/SemaCXX/warn-unsequenced.cpp b/test/SemaCXX/warn-unsequenced.cpp index 54e16a5e6d..9e8a5b46c2 100644 --- a/test/SemaCXX/warn-unsequenced.cpp +++ b/test/SemaCXX/warn-unsequenced.cpp @@ -113,3 +113,58 @@ void test() { (__builtin_object_size(&(++a, a), 0) ? 1 : 0) + ++a; // ok (__builtin_expect(++a, 0) ? 1 : 0) + ++a; // expected-warning {{multiple unsequenced modifications}} } + +namespace templates { + +template +struct Bar { + T get() { return 0; } +}; + +template +struct Foo { + int Run(); + Bar bar; +}; + +enum E {e1, e2}; +bool operator&&(E, E); + +void foo(int, int); + +template +int Foo::Run() { + char num = 0; + + // Before instantiation, Clang may consider the builtin operator here as + // unresolved function calls, and treat the arguments as unordered when + // the builtin operator evaluatation is well-ordered. Waiting until + // instantiation to check these expressions will prevent false positives. + if ((num = bar.get()) < 5 && num < 10) { } + if ((num = bar.get()) < 5 || num < 10) { } + if (static_cast((num = bar.get()) < 5) || static_cast(num < 10)) { } + + if (static_cast((num = bar.get()) < 5) && static_cast(num < 10)) { } + // expected-warning@-1 {{unsequenced modification and access to 'num'}} + + foo(num++, num++); + // expected-warning@-1 2{{multiple unsequenced modifications to 'num'}} + return 1; +} + +int x = Foo().Run(); +// expected-note@-1 {{in instantiation of member function 'templates::Foo::Run'}} + + +template +int Run2() { + T t = static_cast(0); + return (t = static_cast(1)) && t; + // expected-warning@-1 {{unsequenced modification and access to 't'}} +} + +int y = Run2(); +int z = Run2(); +// expected-note@-1{{in instantiation of function template specialization 'templates::Run2' requested here}} + +}