mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
Remove an unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60508 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -542,10 +542,6 @@ namespace {
|
|||||||
/// instruction.
|
/// instruction.
|
||||||
SCEVHandle Imm;
|
SCEVHandle Imm;
|
||||||
|
|
||||||
/// EmittedBase - The actual value* to use for the base value of this
|
|
||||||
/// operation. This is null if we should just use zero so far.
|
|
||||||
Value *EmittedBase;
|
|
||||||
|
|
||||||
// isUseOfPostIncrementedValue - True if this should use the
|
// isUseOfPostIncrementedValue - True if this should use the
|
||||||
// post-incremented version of this IV, not the preincremented version.
|
// post-incremented version of this IV, not the preincremented version.
|
||||||
// This can only be set in special cases, such as the terminating setcc
|
// This can only be set in special cases, such as the terminating setcc
|
||||||
@@ -556,7 +552,7 @@ namespace {
|
|||||||
BasedUser(IVStrideUse &IVSU, ScalarEvolution *se)
|
BasedUser(IVStrideUse &IVSU, ScalarEvolution *se)
|
||||||
: SE(se), Base(IVSU.Offset), Inst(IVSU.User),
|
: SE(se), Base(IVSU.Offset), Inst(IVSU.User),
|
||||||
OperandValToReplace(IVSU.OperandValToReplace),
|
OperandValToReplace(IVSU.OperandValToReplace),
|
||||||
Imm(SE->getIntegerSCEV(0, Base->getType())), EmittedBase(0),
|
Imm(SE->getIntegerSCEV(0, Base->getType())),
|
||||||
isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
|
isUseOfPostIncrementedValue(IVSU.isUseOfPostIncrementedValue) {}
|
||||||
|
|
||||||
// Once we rewrite the code to insert the new IVs we want, update the
|
// Once we rewrite the code to insert the new IVs we want, update the
|
||||||
@@ -577,9 +573,6 @@ namespace {
|
|||||||
void BasedUser::dump() const {
|
void BasedUser::dump() const {
|
||||||
cerr << " Base=" << *Base;
|
cerr << " Base=" << *Base;
|
||||||
cerr << " Imm=" << *Imm;
|
cerr << " Imm=" << *Imm;
|
||||||
if (EmittedBase)
|
|
||||||
cerr << " EB=" << *EmittedBase;
|
|
||||||
|
|
||||||
cerr << " Inst: " << *Inst;
|
cerr << " Inst: " << *Inst;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user