aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/StackSlotColoring.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-07-20 22:05:57 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-07-20 22:05:57 +0000
commite288cd100f86631ec0ade2a85930397a4ea7b21e (patch)
treedb14cd56e8216fb10384a2f687f5e58ad276313a /lib/CodeGen/StackSlotColoring.cpp
parent428ff6a6445ac1a0d263776cb0301f77f1454286 (diff)
downloadexternal_llvm-e288cd100f86631ec0ade2a85930397a4ea7b21e.zip
external_llvm-e288cd100f86631ec0ade2a85930397a4ea7b21e.tar.gz
external_llvm-e288cd100f86631ec0ade2a85930397a4ea7b21e.tar.bz2
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
Diffstat (limited to 'lib/CodeGen/StackSlotColoring.cpp')
-rw-r--r--lib/CodeGen/StackSlotColoring.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/StackSlotColoring.cpp b/lib/CodeGen/StackSlotColoring.cpp
index 1e940b1..20da36e 100644
--- a/lib/CodeGen/StackSlotColoring.cpp
+++ b/lib/CodeGen/StackSlotColoring.cpp
@@ -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());
}