diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-21 22:42:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-21 22:42:02 +0000 |
commit | 1e65e7cab5ddbb60852b4bea8a6eb72d623a052d (patch) | |
tree | bf785f2c2dc9c300ff18a7e95380f83a10da8be1 /llvm/lib/Target/Hexagon | |
parent | 825bdd2fc617f6cee911677d18c3b89301ae7ab9 (diff) | |
download | bcm5719-llvm-1e65e7cab5ddbb60852b4bea8a6eb72d623a052d.tar.gz bcm5719-llvm-1e65e7cab5ddbb60852b4bea8a6eb72d623a052d.zip |
Remove unused member variable from hexagon pass.
llvm-svn: 209328
Diffstat (limited to 'llvm/lib/Target/Hexagon')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp b/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp index aa4121f4ed5..d814e33de2c 100644 --- a/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp +++ b/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp @@ -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"; |