Remove unused member variable from hexagon pass.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2014-05-21 22:42:02 +00:00
parent 30436451e2
commit 9bfc3f592d

View File

@ -47,13 +47,12 @@ using namespace llvm;
namespace {
class HexagonSplitConst32AndConst64 : public MachineFunctionPass {
const HexagonTargetMachine& QTM;
const HexagonSubtarget &QST;
const HexagonTargetMachine &QTM;
public:
static char ID;
HexagonSplitConst32AndConst64(const HexagonTargetMachine& TM)
: MachineFunctionPass(ID), QTM(TM), QST(*TM.getSubtargetImpl()) {}
HexagonSplitConst32AndConst64(const HexagonTargetMachine &TM)
: MachineFunctionPass(ID), QTM(TM) {}
const char *getPassName() const override {
return "Hexagon Split Const32s and Const64s";