commit | a42dec7a1b905fff024fad2c4e02f5b070e3d0c7 | [log] [tgz] |
---|---|---|
author | Paul Semel <semelpaul@gmail.com> | Thu Aug 09 17:05:21 2018 +0000 |
committer | Paul Semel <semelpaul@gmail.com> | Thu Aug 09 17:05:21 2018 +0000 |
tree | 21555cbd7b17c3760453e106171fa925fbee84e3 | |
parent | ca38254601ce7b0f9b096d54cf9b4e2ebaa4716b [diff] [blame] |
[llvm-objcopy] Add --dump-section Differential Revision: https://reviews.llvm.org/D49979 llvm-svn: 339358
diff --git a/llvm/tools/llvm-objcopy/Object.h b/llvm/tools/llvm-objcopy/Object.h index 76748d5..ba6aea9 100644 --- a/llvm/tools/llvm-objcopy/Object.h +++ b/llvm/tools/llvm-objcopy/Object.h
@@ -250,6 +250,7 @@ uint64_t Offset = 0; uint64_t Size = 0; uint64_t Type = ELF::SHT_NULL; + ArrayRef<uint8_t> OriginalData; virtual ~SectionBase() = default;