[globalisel] Fix another mismatch between %d and the RuleID type

This commit is contained in:
Daniel Sanders 2020-01-03 13:35:56 -08:00
parent 6e6b6a5754
commit 1dbc486457
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ bool CombineRule::parseDefs() {
getDefOfSubClass(*Defs->getArg(I), "GIDefMatchData")) {
declareMatchData(Defs->getArgNameStr(I),
MatchDataRec->getValueAsString("Type"),
llvm::to_string(llvm::format("MatchData%d", ID)));
llvm::to_string(llvm::format("MatchData%" PRIu64, ID)));
continue;
}