From 2e2e1104641b2108774d38bf6e85f756a7cf9567 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 10 May 2023 19:53:47 +0200 Subject: [PATCH] fix typos to cycle bots --- lld/docs/ReleaseNotes.rst | 2 +- lld/wasm/Config.h | 2 +- lld/wasm/InputFiles.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lld/docs/ReleaseNotes.rst b/lld/docs/ReleaseNotes.rst index 393b3f7..bf3b84b 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 `_) diff --git a/lld/wasm/Config.h b/lld/wasm/Config.h index 62cc14d..db63694 100644 --- a/lld/wasm/Config.h +++ b/lld/wasm/Config.h @@ -95,7 +95,7 @@ struct Configuration { llvm::SmallVector 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 11cee54..3278134 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) {} -- 2.7.4