aboutsummaryrefslogtreecommitdiff
path: root/tools/lld/lld.cpp
diff options
context:
space:
mode:
authorAzharuddin Mohammed <azharudd@codeaurora.org>2018-09-13 15:37:13 +0000
committerAzharuddin Mohammed <azharudd@codeaurora.org>2018-09-13 15:37:13 +0000
commit40f96ca628024d4a91a5080b7c28368586ee0a21 (patch)
treef7c581f79b43fdb156668ae0c537a6b50cd7a098 /tools/lld/lld.cpp
parent60e057629ddbb8d6bdf2b3235689322b334ee873 (diff)
Fix typo in error message. NFC.
Summary: It should be "wasm-ld", not "wasm-lld". Reviewers: ruiu Reviewed By: ruiu Subscribers: aheejin, sunfish, llvm-commits Differential Revision: https://reviews.llvm.org/D51767 git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@342144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lld/lld.cpp')
-rw-r--r--tools/lld/lld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lld/lld.cpp b/tools/lld/lld.cpp
index 4a8e3f7ec..c749d458a 100644
--- a/tools/lld/lld.cpp
+++ b/tools/lld/lld.cpp
@@ -138,7 +138,7 @@ int main(int Argc, const char **Argv) {
return !wasm::link(Args, canExitEarly());
default:
die("lld is a generic driver.\n"
- "Invoke ld.lld (Unix), ld64.lld (macOS), lld-link (Windows), wasm-lld"
+ "Invoke ld.lld (Unix), ld64.lld (macOS), lld-link (Windows), wasm-ld"
" (WebAssembly) instead");
}
}