From: Evan Cheng Date: Mon, 26 Jul 2010 18:32:55 +0000 (+0000) Subject: ARM fastisel isn't ready. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0944795b8c84612303e9de00bc7e9ea362441227;p=oota-llvm.git ARM fastisel isn't ready. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109421 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; } }