Didn't mean to check that in.
authorEvan Cheng <evan.cheng@apple.com>
Thu, 19 Jan 2006 01:52:56 +0000 (01:52 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 19 Jan 2006 01:52:56 +0000 (01:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25436 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelDAGToDAG.cpp

index 37a67684a036a04d26dd4b98fba6a873de1b1ba4..84e90b72a80ef5de7d49ccb685c85afe19b3874a 100644 (file)
@@ -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) {