diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-22 17:49:33 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-22 17:49:33 +0000 |
commit | 9eff5178f13262df39f447c8a410fe20d6abde3f (patch) | |
tree | d76abc3b8e95aff62a3f285fe41a6c3f22cba5ea /llvm/lib/CodeGen | |
parent | f37abc71dee88477eaff469cbde0c42801625329 (diff) | |
download | bcm5719-llvm-9eff5178f13262df39f447c8a410fe20d6abde3f.tar.gz bcm5719-llvm-9eff5178f13262df39f447c8a410fe20d6abde3f.zip |
Return false if we're not going to do anything.
llvm-svn: 209455
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/EarlyIfConversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/EarlyIfConversion.cpp b/llvm/lib/CodeGen/EarlyIfConversion.cpp index 2d47be71bea..c4706328ea5 100644 --- a/llvm/lib/CodeGen/EarlyIfConversion.cpp +++ b/llvm/lib/CodeGen/EarlyIfConversion.cpp @@ -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(); |