From 1e65e7cab5ddbb60852b4bea8a6eb72d623a052d Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 21 May 2014 22:42:02 +0000 Subject: [PATCH] Remove unused member variable from hexagon pass. llvm-svn: 209328 --- llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp b/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp index aa4121f4ed5d..d814e33de2c1 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";