forked from OSchip/llvm-project
Fix build break introduced by D117147
This commit is contained in:
parent
3a1b178a0b
commit
073e09683d
|
@ -92,13 +92,12 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
char RegAllocScoring::ID = 0;
|
char RegAllocScoring::ID = 0;
|
||||||
FunctionPass *llvm::createRegAllocScoringPass() {
|
FunctionPass *createRegAllocScoringPass() { return new RegAllocScoring(); }
|
||||||
return new RegAllocScoring();
|
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
INITIALIZE_PASS(RegAllocScoring, "regallocscoringpass",
|
INITIALIZE_PASS(RegAllocScoring, "regallocscoringpass",
|
||||||
"Register Allocation Scoring Pass", false, false)
|
"Register Allocation Scoring Pass", false, false)
|
||||||
} // namespace llvm
|
|
||||||
|
|
||||||
// ===================================
|
// ===================================
|
||||||
// Common ML Advisor declarations
|
// Common ML Advisor declarations
|
||||||
|
|
Loading…
Reference in New Issue