summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-10-03 16:17:33 +0000
committerDan Gohman <gohman@apple.com>2008-10-03 16:17:33 +0000
commiteae96ce3ec2df93a436ad68889413f015ab0cbbb (patch)
treeef43ee9ac7741b49a2a1fe61b6f76c04c9943541 /llvm/lib
parentb22ef71d46f0f583dc1401f20df809d1da8d1831 (diff)
downloadbcm5719-llvm-eae96ce3ec2df93a436ad68889413f015ab0cbbb.tar.gz
bcm5719-llvm-eae96ce3ec2df93a436ad68889413f015ab0cbbb.zip
Remove an unused field.
llvm-svn: 57014
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86ISelDAGToDAG.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp b/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
index 658d939c951..06dfc21d078 100644
--- a/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
+++ b/llvm/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) {}
OpenPOWER on IntegriCloud