Fix gcc -Wparentheses warning. NFCI.
llvm-svn: 352191
diff --git a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
index c4cd1a3..2c23170 100644
--- a/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
+++ b/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
@@ -177,8 +177,8 @@
// would require an agreement on the type of registers with the
// target. Currently createVRegs just uses scalar types, and expects the
// target code to replace this type (which we won't know about here)
- assert(RegTy.isScalar() ||
- (RegTy.getNumElements() == ValMapping.NumBreakDowns) &&
+ assert((RegTy.isScalar() ||
+ RegTy.getNumElements() == ValMapping.NumBreakDowns) &&
"only basic vector breakdowns currently supported");
if (MO.isDef()) {