Remove unused variable.

llvm-svn: 234831
This commit is contained in:
Rui Ueyama 2015-04-14 01:10:19 +00:00
parent a5b6859ac4
commit 97d30b87f3
2 changed files with 1 additions and 3 deletions

View File

@ -19,8 +19,7 @@ using namespace llvm::ELF;
using llvm::makeArrayRef;
HexagonTargetHandler::HexagonTargetHandler(HexagonLinkingContext &ctx)
: _ctx(ctx), _runtimeFile(new HexagonRuntimeFile(ctx)),
_targetLayout(new HexagonTargetLayout(ctx)),
: _ctx(ctx), _targetLayout(new HexagonTargetLayout(ctx)),
_relocationHandler(new HexagonTargetRelocationHandler(*_targetLayout)) {}
std::unique_ptr<Writer> HexagonTargetHandler::getWriter() {

View File

@ -132,7 +132,6 @@ public:
private:
HexagonLinkingContext &_ctx;
std::unique_ptr<HexagonRuntimeFile> _runtimeFile;
std::unique_ptr<HexagonTargetLayout> _targetLayout;
std::unique_ptr<HexagonTargetRelocationHandler> _relocationHandler;
};