mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Remove an unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57014 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cce6c297c5
commit
38217fef57
@ -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) {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user