mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
[PlaceSafepoints] Add missing "override" to PlaceBackedgeSafepointsImpl::runOnFunction
Pointed out by -Winconsistent-missing-override. llvm-svn: 237196
This commit is contained in:
parent
1a7ba091af
commit
22bf2c55c0
@ -139,8 +139,8 @@ struct PlaceBackedgeSafepointsImpl : public FunctionPass {
|
||||
runOnLoopAndSubLoops(*I);
|
||||
runOnLoop(L);
|
||||
}
|
||||
|
||||
bool runOnFunction(Function &F) {
|
||||
|
||||
bool runOnFunction(Function &F) override {
|
||||
SE = &getAnalysis<ScalarEvolution>();
|
||||
DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
||||
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
|
||||
|
Loading…
Reference in New Issue
Block a user