Skip to content

Commit 0330a8b

Browse files
committed
clang-format
1 parent 57c7be8 commit 0330a8b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ static APInt encodeFunctionSignature(SelectionDAG *DAG, SDLoc &DL,
136136
if (VT == MVT::f64) {
137137
return wasm::ValType::F64;
138138
}
139-
LLVM_DEBUG(errs() << "Unhandled type for llvm.wasm.ref.test.func: " << VT << "\n");
139+
LLVM_DEBUG(errs() << "Unhandled type for llvm.wasm.ref.test.func: " << VT
140+
<< "\n");
140141
llvm_unreachable("Unhandled type for llvm.wasm.ref.test.func");
141142
};
142143
auto NParams = Params.size();

llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ void WebAssemblyMCInstLower::lower(const MachineInstr *MI,
237237
assert(DescIndex < Desc.NumOperands && "unexpected CImmediate operand");
238238
auto Operands = Desc.operands();
239239
const MCOperandInfo &Info = Operands[DescIndex];
240-
assert(Info.OperandType == WebAssembly::OPERAND_TYPEINDEX && "unexpected CImmediate operand");
240+
assert(Info.OperandType == WebAssembly::OPERAND_TYPEINDEX &&
241+
"unexpected CImmediate operand");
241242
MCOp = lowerEncodedFunctionSignature(MO.getCImm()->getValue());
242243
break;
243244
}

0 commit comments

Comments
 (0)