Skip to content

Commit 2ea9db0

Browse files
committed
[AArch64] Fix -Wparentheses warning with gcc 5.4. NFC
1 parent 958dddf commit 2ea9db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15157,8 +15157,8 @@ static bool performTBISimplification(SDValue Addr,
1515715157
}
1515815158

1515915159
static SDValue foldTruncStoreOfExt(SelectionDAG &DAG, SDNode *N) {
15160-
assert(N->getOpcode() == ISD::STORE ||
15161-
N->getOpcode() == ISD::MSTORE && "Expected STORE dag node in input!");
15160+
assert((N->getOpcode() == ISD::STORE || N->getOpcode() == ISD::MSTORE) &&
15161+
"Expected STORE dag node in input!");
1516215162

1516315163
if (auto Store = dyn_cast<StoreSDNode>(N)) {
1516415164
if (!Store->isTruncatingStore() || Store->isIndexed())

0 commit comments

Comments
 (0)