Skip to content

Commit

Permalink
[RISCV][TableGen] Correct formatting in RISCVGenCompressInstEmitter.i…
Browse files Browse the repository at this point in the history
…nc. NFC
  • Loading branch information
topperc committed Jan 17, 2023
1 parent 574a77a commit b8c06f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/utils/TableGen/CompressInstEmitter.cpp
Expand Up @@ -613,8 +613,8 @@ void CompressInstEmitter::emitCompressInstEmitter(raw_ostream &o,
FuncH.indent(27) << "const MCSubtargetInfo &STI) {\n";
} else if (EType == EmitterType::CheckCompress) {
FuncH << "static bool isCompressibleInst(const MachineInstr &MI,\n";
FuncH.indent(27) << "const " << TargetName << "Subtarget *Subtarget,\n";
FuncH.indent(27) << "const MCSubtargetInfo &STI) {\n";
FuncH.indent(31) << "const " << TargetName << "Subtarget *Subtarget,\n";
FuncH.indent(31) << "const MCSubtargetInfo &STI) {\n";
}

if (CompressPatterns.empty()) {
Expand Down

0 comments on commit b8c06f1

Please sign in to comment.