diff options
Diffstat (limited to 'llvm/lib/ObjCopy/wasm/WasmReader.cpp')
-rw-r--r-- | llvm/lib/ObjCopy/wasm/WasmReader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ObjCopy/wasm/WasmReader.cpp b/llvm/lib/ObjCopy/wasm/WasmReader.cpp index 578e789..420d17f 100644 --- a/llvm/lib/ObjCopy/wasm/WasmReader.cpp +++ b/llvm/lib/ObjCopy/wasm/WasmReader.cpp @@ -18,6 +18,7 @@ using namespace llvm::wasm; Expected<std::unique_ptr<Object>> Reader::create() const { auto Obj = std::make_unique<Object>(); Obj->Header = WasmObj.getHeader(); + Obj->isRelocatableObject = WasmObj.isRelocatableObject(); std::vector<Section> Sections; Obj->Sections.reserve(WasmObj.getNumSections()); for (const SectionRef &Sec : WasmObj.sections()) { |