From 788ba15113276a5bde7a8a0c92230d8cf0aeb053 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 10 Oct 2019 12:21:52 +0000 Subject: Fix -Wparentheses warning. NFCI. llvm-svn: 374326 --- llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Target') diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp index aff379585f2..f06afdbcea9 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp @@ -861,8 +861,8 @@ SDValue WebAssemblyTargetLowering::LowerReturn( const SmallVectorImpl &Outs, const SmallVectorImpl &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"); -- cgit v1.2.3