mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +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 {
|
||||
const TargetRegisterInfo *TRI;
|
||||
LiveIntervalUnion *LIUArray;
|
||||
SlotIndexes *Indexes;
|
||||
MachineFunction *MF;
|
||||
|
||||
/// BlockInterference - information about the interference in a single basic
|
||||
@ -124,7 +123,7 @@ class InterferenceCache {
|
||||
Entry *get(unsigned PhysReg);
|
||||
|
||||
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.
|
||||
void init(MachineFunction*, LiveIntervalUnion*, SlotIndexes*,
|
||||
|
Loading…
Reference in New Issue
Block a user