diff options
| author | Denis Protivensky <dprotivensky@accesssoftek.com> | 2015-05-21 11:50:54 +0000 |
|---|---|---|
| committer | Denis Protivensky <dprotivensky@accesssoftek.com> | 2015-05-21 11:50:54 +0000 |
| commit | db2b179b1e7d407ba3f1873e0b11c4307086f410 (patch) | |
| tree | e62800d543a40eed39b9ba9aaf714de0864b2d48 /lld/lib/ReaderWriter | |
| parent | ad52e44e989b2e6c447632901c03a3313d643180 (diff) | |
| download | bcm5719-llvm-db2b179b1e7d407ba3f1873e0b11c4307086f410.tar.gz bcm5719-llvm-db2b179b1e7d407ba3f1873e0b11c4307086f410.zip | |
[ARM] Remove unused field in executable writer
llvm-svn: 237892
Diffstat (limited to 'lld/lib/ReaderWriter')
| -rw-r--r-- | lld/lib/ReaderWriter/ELF/ARM/ARMExecutableWriter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lld/lib/ReaderWriter/ELF/ARM/ARMExecutableWriter.h b/lld/lib/ReaderWriter/ELF/ARM/ARMExecutableWriter.h index 0f5c89d15cb..45e0aff1f18 100644 --- a/lld/lib/ReaderWriter/ELF/ARM/ARMExecutableWriter.h +++ b/lld/lib/ReaderWriter/ELF/ARM/ARMExecutableWriter.h @@ -30,12 +30,11 @@ protected: private: ARMLinkingContext &_ctx; - ARMTargetLayout &_armLayout; }; ARMExecutableWriter::ARMExecutableWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout) - : ARMELFWriter(ctx, layout), _ctx(ctx), _armLayout(layout) {} + : ARMELFWriter(ctx, layout), _ctx(ctx) {} void ARMExecutableWriter::createImplicitFiles( std::vector<std::unique_ptr<File>> &result) { |

