Fix gcc -Wparentheses warning. NFCI.

llvm-svn: 352193
diff --git a/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp b/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
index 7930680..86bb5bb 100644
--- a/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
+++ b/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
@@ -490,10 +490,10 @@
   auto CheckCopy = [&]() {
     // If we have a bitcast or something, we can't have physical registers.
     assert(
-        I.isCopy() ||
-        (!TargetRegisterInfo::isPhysicalRegister(I.getOperand(0).getReg()) &&
-         !TargetRegisterInfo::isPhysicalRegister(I.getOperand(1).getReg())) &&
-            "No phys reg on generic operator!");
+        (I.isCopy() ||
+         (!TargetRegisterInfo::isPhysicalRegister(I.getOperand(0).getReg()) &&
+          !TargetRegisterInfo::isPhysicalRegister(I.getOperand(1).getReg()))) &&
+        "No phys reg on generic operator!");
     assert(KnownValid || isValidCopy(I, DstRegBank, MRI, TRI, RBI));
     return true;
   };