mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-08 04:52:50 +00:00
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:
parent
30436451e2
commit
9bfc3f592d
@ -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
Block a user