diff options
author | Jake Ehrlich <jakehehrlich@google.com> | 2018-01-26 02:01:37 +0000 |
---|---|---|
committer | Jake Ehrlich <jakehehrlich@google.com> | 2018-01-26 02:01:37 +0000 |
commit | 9634e18ffe2fe2c856c7ab9ea61f7c00c1b2282b (patch) | |
tree | a3f3d5054a0aacffb6b800ab08632111719148b8 /llvm/tools/llvm-objcopy/Object.h | |
parent | 41d9d7b16f1aa367cf69bff02b08be1f5198a1ab (diff) | |
download | bcm5719-llvm-9634e18ffe2fe2c856c7ab9ea61f7c00c1b2282b.tar.gz bcm5719-llvm-9634e18ffe2fe2c856c7ab9ea61f7c00c1b2282b.zip |
Reland "[llvm-objcopy] Refactor llvm-objcopy to use reader and writer objects"
Somehow I reverted changes I made in a previous Reland. This change re-relands
unconfusing a varible name with a type name.
llvm-svn: 323494
Diffstat (limited to 'llvm/tools/llvm-objcopy/Object.h')
-rw-r--r-- | llvm/tools/llvm-objcopy/Object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objcopy/Object.h b/llvm/tools/llvm-objcopy/Object.h index 2c7b572bdab..05f7480b261 100644 --- a/llvm/tools/llvm-objcopy/Object.h +++ b/llvm/tools/llvm-objcopy/Object.h @@ -530,7 +530,7 @@ public: class ELFReader : public Reader { private: - std::unique_ptr<Binary> Binary; + std::unique_ptr<Binary> Bin; std::shared_ptr<MemoryBuffer> Data; public: |