diff options
author | Sudharsan Veeravalli <quic_svs@quicinc.com> | 2025-02-07 13:35:30 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-07 13:35:30 +0530 |
commit | 83783e8bec0eb25e06eff57a22b0419cdc2bce2c (patch) | |
tree | 34a5c5d3670e3b45921be850cec88b3e74e34a7a /llvm/lib/Target/RISCV/RISCVTargetMachine.cpp | |
parent | e346d4752f73d7e943cd7c270f2f470e47e58c56 (diff) | |
download | llvm-83783e8bec0eb25e06eff57a22b0419cdc2bce2c.zip llvm-83783e8bec0eb25e06eff57a22b0419cdc2bce2c.tar.gz llvm-83783e8bec0eb25e06eff57a22b0419cdc2bce2c.tar.bz2 |
[RISCV] Fix typos discovered by codespell (NFC) (#126191)
Found using https://github.com/codespell-project/codespell
```
codespell RISCV --write-changes \
--ignore-words-list=FPR,fpr,VAs,ORE,WorstCase,hart,sie,MIs,FLE,fle,CarryIn,vor,OLT,VILL,vill,bu,pass-thru
```
Diffstat (limited to 'llvm/lib/Target/RISCV/RISCVTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/RISCV/RISCVTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp b/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp index 3e49492..4a69bde 100644 --- a/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp +++ b/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp @@ -78,7 +78,7 @@ static cl::opt<bool> EnableRISCVCopyPropagation( static cl::opt<bool> EnableRISCVDeadRegisterElimination( "riscv-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 x0"), cl::init(true)); |