From: Eli Bendersky Date: Wed, 12 Mar 2014 16:14:53 +0000 (+0000) Subject: Add parens around && clauses in a || to appease the compiler. X-Git-Tag: android-x86-7.1-r4~64210 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8a9f2fd7f538abe42fcc3dcc9e30f63c1423b014;p=android-x86%2Fexternal-llvm.git Add parens around && clauses in a || to appease the compiler. Otherwise gcc 4.8.2 generates a warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203671 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Transforms/Utils/Cloning.cpp b/unittests/Transforms/Utils/Cloning.cpp index 0ff80d6f8a8..db1edd9c6d4 100644 --- a/unittests/Transforms/Utils/Cloning.cpp +++ b/unittests/Transforms/Utils/Cloning.cpp @@ -283,8 +283,8 @@ TEST_F(CloneFunc, Subprogram) { DISubprogram Sub2(*Iter); EXPECT_TRUE(Sub2.Verify()); - EXPECT_TRUE(Sub1.getFunction() == OldFunc && Sub2.getFunction() == NewFunc - || Sub1.getFunction() == NewFunc && Sub2.getFunction() == OldFunc); + EXPECT_TRUE((Sub1.getFunction() == OldFunc && Sub2.getFunction() == NewFunc) + || (Sub1.getFunction() == NewFunc && Sub2.getFunction() == OldFunc)); } // Test that the new subprogram entry was not added to the CU which doesn't