forked from OSchip/llvm-project
[globalisel] Fix another mismatch between %d and the RuleID type
This commit is contained in:
parent
6e6b6a5754
commit
1dbc486457
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue