summaryrefslogtreecommitdiff
path: root/lld/wasm
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2023-02-04 15:23:24 -0500
committerNico Weber <thakis@chromium.org>2023-02-04 15:23:30 -0500
commita2ae9e3a24a77451341020341bed251a76ba7c02 (patch)
tree2168680f492c55001509481581628677dd14dad2 /lld/wasm
parent062380c86f061c7308c8b973a1b94e1f6323be5d (diff)
downloadllvm-a2ae9e3a24a77451341020341bed251a76ba7c02.tar.gz
[lld] fix comment typos to cycle bots
Diffstat (limited to 'lld/wasm')
-rw-r--r--lld/wasm/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/wasm/Driver.cpp b/lld/wasm/Driver.cpp
index 2f2837ddbdcd..85020660ea29 100644
--- a/lld/wasm/Driver.cpp
+++ b/lld/wasm/Driver.cpp
@@ -296,7 +296,7 @@ static std::optional<std::string> findFromSearchPaths(StringRef path) {
// search paths.
static std::optional<std::string> searchLibraryBaseName(StringRef name) {
for (StringRef dir : config->searchPaths) {
- // Currently we don't enable dyanmic linking at all unless -shared or -pie
+ // Currently we don't enable dynamic linking at all unless -shared or -pie
// are used, so don't even look for .so files in that case..
if (config->isPic && !config->isStatic)
if (std::optional<std::string> s = findFile(dir, "lib" + name + ".so"))