Skip to content

Commit bac490b

Browse files
committed
[TableGen] Use Register in FastISel output. NFC
1 parent ed93e6b commit bac490b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/utils/TableGen/FastISelEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ void FastISelMap::printFunctionDefinitions(raw_ostream &OS) {
828828
for (unsigned i = 0, e = MI->second.size(); i != e; ++i) {
829829
OS << " if (";
830830
MI->second[i].emitImmediatePredicate(OS, ImmediatePredicates);
831-
OS << ")\n if (unsigned Reg = fastEmit_";
831+
OS << ")\n if (Register Reg = fastEmit_";
832832
MI->second[i].PrintManglingSuffix(OS, ImmediatePredicates);
833833
OS << "(VT, RetVT, Opcode";
834834
if (!MI->second[i].empty())

0 commit comments

Comments
 (0)