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;
|
||||
FunctionPass *llvm::createRegAllocScoringPass() {
|
||||
return new RegAllocScoring();
|
||||
}
|
||||
FunctionPass *createRegAllocScoringPass() { return new RegAllocScoring(); }
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
INITIALIZE_PASS(RegAllocScoring, "regallocscoringpass",
|
||||
"Register Allocation Scoring Pass", false, false)
|
||||
} // namespace llvm
|
||||
|
||||
// ===================================
|
||||
// Common ML Advisor declarations
|
||||
|
|
Loading…
Reference in New Issue