The X86 target will soon have an implementation of createFastISel.
llvm-svn: 55010
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index b67c625..3f49c11 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -1869,6 +1869,14 @@
return false;
}
+FastISel *X86TargetLowering::createFastISel(MachineBasicBlock *mbb,
+ MachineFunction *mf,
+ const TargetInstrInfo *tii) {
+ // FastISel isn't yet supported.
+ return 0;
+}
+
+
//===----------------------------------------------------------------------===//
// Other Lowering Hooks
//===----------------------------------------------------------------------===//