Add parens around && clauses in a || to appease the compiler.
authorEli Bendersky <eliben@google.com>
Wed, 12 Mar 2014 16:14:53 +0000 (16:14 +0000)
committerEli Bendersky <eliben@google.com>
Wed, 12 Mar 2014 16:14:53 +0000 (16:14 +0000)
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

unittests/Transforms/Utils/Cloning.cpp

index 0ff80d6f8a82e57619561b3b93ebcf074c88179b..db1edd9c6d4767841740361945be7a98c21565c7 100644 (file)
@@ -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