forked from OSchip/llvm-project
[TableGen] Fix ProfileFoldOpInit so that parameters are named consistently [NFC]
See https://bugs.llvm.org/show_bug.cgi?id=50595 Differential Revision: https://reviews.llvm.org/D103823
This commit is contained in:
parent
2ef81cb297
commit
ef8df920fb
|
@ -1470,9 +1470,8 @@ std::string TernOpInit::getAsString() const {
|
|||
", " + MHS->getAsString() + ", " + RHS->getAsString() + ")");
|
||||
}
|
||||
|
||||
static void ProfileFoldOpInit(FoldingSetNodeID &ID, Init *A, Init *B,
|
||||
Init *Start, Init *List, Init *Expr,
|
||||
RecTy *Type) {
|
||||
static void ProfileFoldOpInit(FoldingSetNodeID &ID, Init *Start, Init *List,
|
||||
Init *A, Init *B, Init *Expr, RecTy *Type) {
|
||||
ID.AddPointer(Start);
|
||||
ID.AddPointer(List);
|
||||
ID.AddPointer(A);
|
||||
|
|
Loading…
Reference in New Issue