[llvm-commits] [llvm] r109421 - /llvm/trunk/lib/Target/ARM/ARMFastISel.cpp

Evan Cheng evan.cheng at apple.com
Mon Jul 26 11:32:55 PDT 2010


Author: evancheng
Date: Mon Jul 26 13:32:55 2010
New Revision: 109421

URL: http://llvm.org/viewvc/llvm-project?rev=109421&view=rev
Log:
ARM fastisel isn't ready.

Modified:
    llvm/trunk/lib/Target/ARM/ARMFastISel.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFastISel.cpp?rev=109421&r1=109420&r2=109421&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFastISel.cpp Mon Jul 26 13:32:55 2010
@@ -66,6 +66,7 @@
 
 namespace llvm {
   llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
-    return new ARMFastISel(funcInfo);
+    // Turn it off for now. It's not quite ready.
+    return 0;
   }
 }





More information about the llvm-commits mailing list