mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-19 08:35:45 +00:00
Remove unused private member variables uncovered by the recent changes to clang's -Wunused-private-field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160583 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -46,7 +46,6 @@ STATISTIC(NumDead, "Number of trivially dead stack accesses eliminated");
|
||||
|
||||
namespace {
|
||||
class StackSlotColoring : public MachineFunctionPass {
|
||||
bool ColorWithRegs;
|
||||
LiveStacks* LS;
|
||||
MachineFrameInfo *MFI;
|
||||
const TargetInstrInfo *TII;
|
||||
@@ -82,7 +81,7 @@ namespace {
|
||||
public:
|
||||
static char ID; // Pass identification
|
||||
StackSlotColoring() :
|
||||
MachineFunctionPass(ID), ColorWithRegs(false), NextColor(-1) {
|
||||
MachineFunctionPass(ID), NextColor(-1) {
|
||||
initializeStackSlotColoringPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user