Skip to content

Commit eb3316e

Browse files
committed
Formatting
1 parent fbe09a9 commit eb3316e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/utils/TableGen/DecoderEmitter.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,10 +1674,11 @@ static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI,
16741674
<< " makeUp(insn, Len);";
16751675
}
16761676
OS << R"(
1677-
S = decodeToMCInst(DecodeIdx, S, insn, MI, Address, DisAsm, DecodeComplete);
1677+
S = decodeToMCInst(DecodeIdx, S, insn, MI, Address, DisAsm,
1678+
DecodeComplete);
16781679
LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc
1679-
<< ", using decoder " << DecodeIdx << ": "
1680-
<< (S ? "PASS, " : "FAIL, "));
1680+
<< ", using decoder " << DecodeIdx << ": "
1681+
<< (S ? "PASS, " : "FAIL, "));
16811682
16821683
if (DecodeComplete) {
16831684
LLVM_DEBUG(dbgs() << "decoding complete\n");

0 commit comments

Comments
 (0)