Return false if we're not going to do anything.

llvm-svn: 209455
This commit is contained in:
Eric Christopher 2014-05-22 17:49:33 +00:00
parent f37abc71de
commit 9eff5178f1
1 changed files with 1 additions and 1 deletions

View File

@ -780,7 +780,7 @@ bool EarlyIfConverter::runOnMachineFunction(MachineFunction &MF) {
if (!MF.getTarget()
.getSubtarget<TargetSubtargetInfo>()
.enableEarlyIfConversion())
return true;
return false;
TII = MF.getTarget().getInstrInfo();
TRI = MF.getTarget().getRegisterInfo();