diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp index 8611c05be89a11..fb9f980cfff29c 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp @@ -1635,8 +1635,7 @@ SDValue WebAssemblyTargetLowering::LowerMUL_LOHI(SDValue Op, SDValue WebAssemblyTargetLowering::Replace128Op(SDNode *N, SelectionDAG &DAG) const { assert(Subtarget->hasWideArithmetic()); - auto ValTy = N->getValueType(0); - assert(ValTy == MVT::i128); + assert(N->getValueType(0) == MVT::i128); SDLoc DL(N); unsigned Opcode; switch (N->getOpcode()) {