remove now-dead code, the legalizer takes care of this for us

llvm-svn: 25776
diff --git a/llvm/lib/Target/X86/X86ISelPattern.cpp b/llvm/lib/Target/X86/X86ISelPattern.cpp
index 611d2a9..77863e1 100644
--- a/llvm/lib/Target/X86/X86ISelPattern.cpp
+++ b/llvm/lib/Target/X86/X86ISelPattern.cpp
@@ -1353,12 +1353,7 @@
     BuildMI(BB, Opc, 1,Result).addImm(cast<ConstantSDNode>(N)->getValue());
     return Result;
   case ISD::UNDEF:
-    if (Node->getValueType(0) == MVT::f64) {
-      // FIXME: SHOULD TEACH STACKIFIER ABOUT UNDEF VALUES!
-      BuildMI(BB, X86::FpLD0, 0, Result);
-    } else {
-      BuildMI(BB, X86::IMPLICIT_DEF, 0, Result);
-    }
+    BuildMI(BB, X86::IMPLICIT_DEF, 0, Result);
     return Result;
   case ISD::GlobalAddress: {
     GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();