diff options
author | Dan Gohman <gohman@apple.com> | 2008-10-03 16:17:33 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-10-03 16:17:33 +0000 |
commit | 38217fef57de72064ba74a165cf100d785dfcad0 (patch) | |
tree | cca73145d3f98e0e881b1b7e8d0bcf0c6bec5c34 | |
parent | cce6c297c54b4c9c8615c77e97cd64e70812ea60 (diff) |
Remove an unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57014 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelDAGToDAG.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp index 658d939c95..06dfc21d07 100644 --- a/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -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) {} |