forked from OSchip/llvm-project
Remove unused member variable from hexagon pass.
llvm-svn: 209328
This commit is contained in:
parent
825bdd2fc6
commit
1e65e7cab5
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue