diff options
author | Sam Clegg <sbc@chromium.org> | 2018-07-18 21:46:09 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2018-07-18 21:46:09 +0000 |
commit | 2df314d17f83c6b7d47c8933d2954afc9e19439d (patch) | |
tree | bd58f602a619170d5f4ce38fb5142609735712e2 /lld/wasm/InputFiles.h | |
parent | 47068a42d24db55632bc72dadba0732b24a6ac50 (diff) | |
download | bcm5719-llvm-2df314d17f83c6b7d47c8933d2954afc9e19439d.tar.gz bcm5719-llvm-2df314d17f83c6b7d47c8933d2954afc9e19439d.zip |
[WebAssembly] Fix archive member display in error messages
Add a test for this by causing a symbol collision
between archive members.
Differential Revision: https://reviews.llvm.org/D49343
llvm-svn: 337426
Diffstat (limited to 'lld/wasm/InputFiles.h')
-rw-r--r-- | lld/wasm/InputFiles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/wasm/InputFiles.h b/lld/wasm/InputFiles.h index 75d20e63cf5..73cc32f8add 100644 --- a/lld/wasm/InputFiles.h +++ b/lld/wasm/InputFiles.h @@ -63,7 +63,7 @@ public: Kind kind() const { return FileKind; } // An archive file name if this file is created from an archive. - StringRef ParentName; + StringRef ArchiveName; ArrayRef<Symbol *> getSymbols() const { return Symbols; } |