mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Remove unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f95acc6d02
commit
3bf7a1cc3c
@ -21,7 +21,6 @@ namespace llvm {
|
|||||||
class InterferenceCache {
|
class InterferenceCache {
|
||||||
const TargetRegisterInfo *TRI;
|
const TargetRegisterInfo *TRI;
|
||||||
LiveIntervalUnion *LIUArray;
|
LiveIntervalUnion *LIUArray;
|
||||||
SlotIndexes *Indexes;
|
|
||||||
MachineFunction *MF;
|
MachineFunction *MF;
|
||||||
|
|
||||||
/// BlockInterference - information about the interference in a single basic
|
/// BlockInterference - information about the interference in a single basic
|
||||||
@ -124,7 +123,7 @@ class InterferenceCache {
|
|||||||
Entry *get(unsigned PhysReg);
|
Entry *get(unsigned PhysReg);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
InterferenceCache() : TRI(0), LIUArray(0), Indexes(0), MF(0), RoundRobin(0) {}
|
InterferenceCache() : TRI(0), LIUArray(0), MF(0), RoundRobin(0) {}
|
||||||
|
|
||||||
/// init - Prepare cache for a new function.
|
/// init - Prepare cache for a new function.
|
||||||
void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*,
|
void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*,
|
||||||
|
Loading…
Reference in New Issue
Block a user