summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2014-02-07 20:12:49 +0000
committerRenato Golin <renato.golin@linaro.org>2014-02-07 20:12:49 +0000
commit78a6eba86218e929dd48e2d1a7d888e7e0179abc (patch)
treec8519c60ca55709df77caed8b9a6ee72234e6fe5 /llvm/lib/Target/ARM/ARMAsmPrinter.cpp
parenta16a001b726200c60575c3fd76502d0bc45fba49 (diff)
downloadbcm5719-llvm-78a6eba86218e929dd48e2d1a7d888e7e0179abc.tar.gz
bcm5719-llvm-78a6eba86218e929dd48e2d1a7d888e7e0179abc.zip
Remove -arm-disable-ehabi option
llvm-svn: 200988
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMAsmPrinter.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
index 82355063221..68820f4332c 100644
--- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -1104,8 +1104,6 @@ void ARMAsmPrinter::EmitUnwindingInstruction(const MachineInstr *MI) {
}
}
-extern cl::opt<bool> DisableARMEHABI;
-
// Simple pseudo-instructions have their lowering (with expansion to real
// instructions) auto-generated.
#include "ARMGenMCPseudoLowering.inc"
@@ -1120,7 +1118,7 @@ void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
}
// Emit unwinding stuff for frame-related instructions
- if (Subtarget->isTargetEHABICompatible() && !DisableARMEHABI &&
+ if (Subtarget->isTargetEHABICompatible() &&
MI->getFlag(MachineInstr::FrameSetup))
EmitUnwindingInstruction(MI);
OpenPOWER on IntegriCloud