diff options
Diffstat (limited to 'llvm/lib/Object/Archive.cpp')
-rw-r--r-- | llvm/lib/Object/Archive.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp index 0b29428..ad03f9c 100644 --- a/llvm/lib/Object/Archive.cpp +++ b/llvm/lib/Object/Archive.cpp @@ -261,6 +261,10 @@ Expected<StringRef> ArchiveMemberHeader::getName(uint64_t Size) const { // It looks like a CFG guard: we just skip it for now. if (Name.equals("/<XFGHASHMAP>/")) return Name; + // Some libraries (e.g., arm64rt.lib) from the Windows WDK + // (version 10.0.22000.0) contain this undocumented special member. + if (Name.equals("/<ECSYMBOLS>/")) + return Name; // It's a long name. // Get the string table offset. std::size_t StringOffset; |