Remove unused member variable from hexagon pass.

llvm-svn: 209328
This commit is contained in:
Eric Christopher 2014-05-21 22:42:02 +00:00
parent 825bdd2fc6
commit 1e65e7cab5
1 changed files with 3 additions and 4 deletions

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";