[llvm] Fix cl::desc typos in aarch64-enable-dead-defs and arm-implicit-it. (PR #106712)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 30 04:37:19 PDT 2024
https://github.com/rjmansfield created https://github.com/llvm/llvm-project/pull/106712
None
>From 66f53fa9ab69d2b8b392d7fa03ea69eb09e82e2a Mon Sep 17 00:00:00 2001
From: Ryan Mansfield <ryan_mansfield at apple.com>
Date: Fri, 30 Aug 2024 07:32:25 -0400
Subject: [PATCH] Fix cl::desc typos in aarch64-enable-dead-defs and
arm-implicit-it.
---
llvm/lib/Target/AArch64/AArch64TargetMachine.cpp | 2 +-
llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp b/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
index bd5684a287381a..9f96f6c5e83ec4 100644
--- a/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
+++ b/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
@@ -98,7 +98,7 @@ static cl::opt<bool> EnableCollectLOH(
static cl::opt<bool>
EnableDeadRegisterElimination("aarch64-enable-dead-defs", cl::Hidden,
cl::desc("Enable the pass that removes dead"
- " definitons and replaces stores to"
+ " definitions and replaces stores to"
" them with stores to the zero"
" register"),
cl::init(true));
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 8b8452a2b78c80..2e0c240e112ebb 100644
--- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -79,7 +79,7 @@ enum class ImplicitItModeTy { Always, Never, ARMOnly, ThumbOnly };
static cl::opt<ImplicitItModeTy> ImplicitItMode(
"arm-implicit-it", cl::init(ImplicitItModeTy::ARMOnly),
- cl::desc("Allow conditional instructions outdside of an IT block"),
+ cl::desc("Allow conditional instructions outside of an IT block"),
cl::values(clEnumValN(ImplicitItModeTy::Always, "always",
"Accept in both ISAs, emit implicit ITs in Thumb"),
clEnumValN(ImplicitItModeTy::Never, "never",
More information about the llvm-commits
mailing list