mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 11:39:35 +00:00
R600: Remove unused Outputs variable
llvm-svn: 176967
This commit is contained in:
parent
716415b1ac
commit
44444f0162
@ -14,5 +14,4 @@ using namespace llvm;
|
|||||||
|
|
||||||
R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
|
R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF)
|
||||||
: MachineFunctionInfo() {
|
: MachineFunctionInfo() {
|
||||||
memset(Outputs, 0, sizeof(Outputs));
|
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,6 @@ public:
|
|||||||
R600MachineFunctionInfo(const MachineFunction &MF);
|
R600MachineFunctionInfo(const MachineFunction &MF);
|
||||||
SmallVector<unsigned, 4> LiveOuts;
|
SmallVector<unsigned, 4> LiveOuts;
|
||||||
std::vector<unsigned> IndirectRegs;
|
std::vector<unsigned> IndirectRegs;
|
||||||
SDNode *Outputs[16];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
Loading…
Reference in New Issue
Block a user