summaryrefslogtreecommitdiff
path: root/lld
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2023-05-10 19:53:47 +0200
committerNico Weber <thakis@chromium.org>2023-05-10 19:53:55 +0200
commit2e2e1104641b2108774d38bf6e85f756a7cf9567 (patch)
tree225db5393a4b19269f30493506e16791883b2577 /lld
parent63eb04a3683996db26dbf1534682c5696d93b080 (diff)
downloadllvm-2e2e1104641b2108774d38bf6e85f756a7cf9567.tar.gz
fix typos to cycle bots
Diffstat (limited to 'lld')
-rw-r--r--lld/docs/ReleaseNotes.rst2
-rw-r--r--lld/wasm/Config.h2
-rw-r--r--lld/wasm/InputFiles.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/lld/docs/ReleaseNotes.rst b/lld/docs/ReleaseNotes.rst
index 393b3f7d848d..bf3b84b2efb8 100644
--- a/lld/docs/ReleaseNotes.rst
+++ b/lld/docs/ReleaseNotes.rst
@@ -47,6 +47,6 @@ WebAssembly Improvements
Fixes
#####
-* Arm exception index tables (.ARM.exidx sections) are now ouptut
+* Arm exception index tables (.ARM.exidx sections) are now output
correctly when they are at a non zero offset within their output
section. (`D148033 <https://reviews.llvm.org/D148033>`_)
diff --git a/lld/wasm/Config.h b/lld/wasm/Config.h
index 62cc14dc6986..db636947d269 100644
--- a/lld/wasm/Config.h
+++ b/lld/wasm/Config.h
@@ -95,7 +95,7 @@ struct Configuration {
llvm::SmallVector<uint8_t, 0> buildIdVector;
// The following config options do not directly correspond to any
- // particular command line options, and should probably be moved to seperate
+ // particular command line options, and should probably be moved to separate
// Ctx struct as in ELF/Config.h
// True if we are creating position-independent code.
diff --git a/lld/wasm/InputFiles.h b/lld/wasm/InputFiles.h
index 11cee5405b65..327813484eaf 100644
--- a/lld/wasm/InputFiles.h
+++ b/lld/wasm/InputFiles.h
@@ -184,7 +184,7 @@ public:
static bool doneLTO;
};
-// Stub libray (See docs/WebAssembly.rst)
+// Stub library (See docs/WebAssembly.rst)
class StubFile : public InputFile {
public:
explicit StubFile(MemoryBufferRef m) : InputFile(StubKind, m) {}