[Core] Add type and size to SharedLibraryAtom.
llvm-svn: 191466
diff --git a/lld/lib/ReaderWriter/Native/NativeFileFormat.h b/lld/lib/ReaderWriter/Native/NativeFileFormat.h
index 6686eb3..1dd1551 100644
--- a/lld/lib/ReaderWriter/Native/NativeFileFormat.h
+++ b/lld/lib/ReaderWriter/Native/NativeFileFormat.h
@@ -172,8 +172,10 @@
// The NCS_SharedLibraryAtomsV1 chunk contains an array of these structs
//
struct NativeSharedLibraryAtomIvarsV1 {
+ uint64_t size;
uint32_t nameOffset;
uint32_t loadNameOffset;
+ uint32_t type;
uint32_t flags;
};