diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-07-26 18:32:55 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-07-26 18:32:55 +0000 |
commit | 0944795b8c84612303e9de00bc7e9ea362441227 (patch) | |
tree | 054ea687f3a45c5ef90036032305cfd812341b94 /lib | |
parent | 12ba98858c348cd3a2682f5cf259e63e9ae184b4 (diff) | |
download | external_llvm-0944795b8c84612303e9de00bc7e9ea362441227.zip external_llvm-0944795b8c84612303e9de00bc7e9ea362441227.tar.gz external_llvm-0944795b8c84612303e9de00bc7e9ea362441227.tar.bz2 |
ARM fastisel isn't ready.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109421 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMFastISel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 3e79d14..aad037a 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -66,6 +66,7 @@ bool ARMFastISel::TargetSelectInstruction(const Instruction *I) { namespace llvm { llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) { - return new ARMFastISel(funcInfo); + // Turn it off for now. It's not quite ready. + return 0; } } |