From d9c45e9af96c3ec5d8228b05908d1465cb3fdbea Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 19 Jan 2006 01:52:56 +0000 Subject: [PATCH] Didn't mean to check that in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25436 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelDAGToDAG.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp index 37a67684a03..84e90b72a80 100644 --- a/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -215,7 +215,6 @@ void X86DAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) { /// the main function. static void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI) { -#if 0 // Switch the FPU to 64-bit precision mode for better compatibility and speed. int CWFrameIdx = MFI->CreateStackObject(2, 2); addFrameReference(BuildMI(BB, X86::FNSTCW16m, 4), CWFrameIdx); @@ -226,7 +225,6 @@ static void EmitSpecialCodeForMain(MachineBasicBlock *BB, // Reload the modified control word now. addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx); -#endif } void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {