Fix -Wparentheses warning. NFCI.

llvm-svn: 374326
This commit is contained in:
Simon Pilgrim 2019-10-10 12:21:52 +00:00
parent 0891366571
commit 788ba15113
1 changed files with 2 additions and 2 deletions

View File

@ -861,8 +861,8 @@ SDValue WebAssemblyTargetLowering::LowerReturn(
const SmallVectorImpl<ISD::OutputArg> &Outs,
const SmallVectorImpl<SDValue> &OutVals, const SDLoc &DL,
SelectionDAG &DAG) const {
assert(Subtarget->hasMultivalue() ||
Outs.size() <= 1 && "MVP WebAssembly can only return up to one value");
assert((Subtarget->hasMultivalue() || Outs.size() <= 1) &&
"MVP WebAssembly can only return up to one value");
if (!callingConvSupported(CallConv))
fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");