diff options
| author | Eric Christopher <echristo@apple.com> | 2010-10-18 22:53:53 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-10-18 22:53:53 +0000 |
| commit | 7b92c2a9a00ba0e19e15f476808d89e8c2b7775a (patch) | |
| tree | 22305f664926b38ecb9b49bf98c1e09f8f19a616 /llvm/lib | |
| parent | 473f8a6f88213286f615d4c0f295f2d88a57800d (diff) | |
| download | bcm5719-llvm-7b92c2a9a00ba0e19e15f476808d89e8c2b7775a.tar.gz bcm5719-llvm-7b92c2a9a00ba0e19e15f476808d89e8c2b7775a.zip | |
Revert r116220 - thus turning arm fast isel back on by default.
llvm-svn: 116762
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMFastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp index d4b4dca3b48..3a90d7aee40 100644 --- a/llvm/lib/Target/ARM/ARMFastISel.cpp +++ b/llvm/lib/Target/ARM/ARMFastISel.cpp @@ -48,8 +48,8 @@ using namespace llvm; static cl::opt<bool> -EnableARMFastISel("arm-fast-isel", - cl::desc("Turn on experimental ARM fast-isel support"), +DisableARMFastISel("disable-arm-fast-isel", + cl::desc("Turn off experimental ARM fast-isel support"), cl::init(false), cl::Hidden); namespace { @@ -1660,7 +1660,7 @@ namespace llvm { // Completely untested on non-darwin. const TargetMachine &TM = funcInfo.MF->getTarget(); const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>(); - if (Subtarget->isTargetDarwin() && EnableARMFastISel) + if (Subtarget->isTargetDarwin() && !DisableARMFastISel) return new ARMFastISel(funcInfo); return 0; } |

