Remove an unused field.
authorDan Gohman <gohman@apple.com>
Fri, 3 Oct 2008 16:17:33 +0000 (16:17 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 3 Oct 2008 16:17:33 +0000 (16:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57014 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelDAGToDAG.cpp

index 658d939c951f5aad5551c47c01ed8adaeeb71c66..06dfc21d07859637033919410dc1d30ab8a59de7 100644 (file)
@@ -107,10 +107,6 @@ namespace {
   /// SelectionDAG operations.
   ///
   class VISIBILITY_HIDDEN X86DAGToDAGISel : public SelectionDAGISel {
-    /// ContainsFPCode - Every instruction we select that uses or defines a FP
-    /// register should set this to true.
-    bool ContainsFPCode;
-
     /// TM - Keep a reference to X86TargetMachine.
     ///
     X86TargetMachine &TM;
@@ -134,8 +130,7 @@ namespace {
   public:
     X86DAGToDAGISel(X86TargetMachine &tm, bool fast)
       : SelectionDAGISel(X86Lowering, fast),
-        ContainsFPCode(false), TM(tm),
-        X86Lowering(*TM.getTargetLowering()),
+        TM(tm), X86Lowering(*TM.getTargetLowering()),
         Subtarget(&TM.getSubtarget<X86Subtarget>()),
         OptForSize(false) {}