aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCWin64EH.cpp
diff options
context:
space:
mode:
authorLuke Drummond <luke.drummond@codeplay.com>2023-01-05 18:34:55 +0000
committerLuke Drummond <luke.drummond@codeplay.com>2023-01-05 18:49:23 +0000
commit108766fc7ef83724ff4f66235bd561b217df0ff7 (patch)
tree01cbf0c64850163065d28f1a892778f564fc7375 /llvm/lib/MC/MCWin64EH.cpp
parent7c327c2fbb8af6ff6eeb93cb976212068044a9e2 (diff)
downloadllvm-108766fc7ef83724ff4f66235bd561b217df0ff7.zip
llvm-108766fc7ef83724ff4f66235bd561b217df0ff7.tar.gz
llvm-108766fc7ef83724ff4f66235bd561b217df0ff7.tar.bz2
Fix typos
I found one typo of "implemnt", then some more. s/implemnt/implement/g
Diffstat (limited to 'llvm/lib/MC/MCWin64EH.cpp')
-rw-r--r--llvm/lib/MC/MCWin64EH.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/MC/MCWin64EH.cpp b/llvm/lib/MC/MCWin64EH.cpp
index 4b20959..1a55722 100644
--- a/llvm/lib/MC/MCWin64EH.cpp
+++ b/llvm/lib/MC/MCWin64EH.cpp
@@ -1282,9 +1282,9 @@ static void ARM64EmitUnwindInfoForSegment(MCStreamer &streamer,
// FIXME: We should be able to split unwind info into multiple sections.
if (CodeWords > 0xFF || EpilogCount > 0xFFFF)
report_fatal_error(
- "SEH unwind data splitting is only implemnted for large functions, "
- "cases of too many code words or too many epilogs will be done later"
- );
+ "SEH unwind data splitting is only implemented for large functions, "
+ "cases of too many code words or too many epilogs will be done "
+ "later");
uint32_t row2 = 0x0;
row2 |= (CodeWords & 0xFF) << 16;
row2 |= (EpilogCount & 0xFFFF);