From 0944795b8c84612303e9de00bc7e9ea362441227 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 26 Jul 2010 18:32:55 +0000 Subject: [PATCH] ARM fastisel isn't ready. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109421 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMFastISel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 3e79d149e8a..aad037a78a2 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; } } -- 2.34.1