Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit fff7159

Browse files
committed
Fix -Wparentheses warning. NFCI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374326 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 0472427 commit fff7159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Target/WebAssembly/WebAssemblyISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,8 +861,8 @@ SDValue WebAssemblyTargetLowering::LowerReturn(
861861
const SmallVectorImpl<ISD::OutputArg> &Outs,
862862
const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
863863
SelectionDAG &DAG) const {
864-
assert(Subtarget->hasMultivalue() ||
865-
Outs.size() <= 1 && "MVP WebAssembly can only return up to one value");
864+
assert((Subtarget->hasMultivalue() || Outs.size() <= 1) &&
865+
"MVP WebAssembly can only return up to one value");
866866
if (!callingConvSupported(CallConv))
867867
fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
868868

0 commit comments

Comments
 (0)