1
0
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:
Justin Bogner 2015-05-12 21:49:47 +00:00
parent 1a7ba091af
commit 22bf2c55c0

View File

@ -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();