1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

ARM fastisel isn't ready.

llvm-svn: 109421
This commit is contained in:
Evan Cheng 2010-07-26 18:32:55 +00:00
parent ecba91f744
commit 1566171daa

View File

@ -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;
}
}