[llvm-branch-commits] [llvm] db21593 - fix typo

Vitaly Buka via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Aug 30 13:54:48 PDT 2024


Author: Vitaly Buka
Date: 2024-08-30T13:53:56-07:00
New Revision: db21593e493caf86e8fce7d68d1c6b199a3795c1

URL: https://github.com/llvm/llvm-project/commit/db21593e493caf86e8fce7d68d1c6b199a3795c1
DIFF: https://github.com/llvm/llvm-project/commit/db21593e493caf86e8fce7d68d1c6b199a3795c1.diff

LOG: fix typo

Added: 
    

Modified: 
    llvm/lib/CodeGen/AtomicExpandPass.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/AtomicExpandPass.cpp b/llvm/lib/CodeGen/AtomicExpandPass.cpp
index d9843554860d63..2da723a0cc175b 100644
--- a/llvm/lib/CodeGen/AtomicExpandPass.cpp
+++ b/llvm/lib/CodeGen/AtomicExpandPass.cpp
@@ -367,7 +367,7 @@ bool AtomicExpandImpl::run(Function &F, const TargetMachine *TM) {
 
         // Detect control flow change and resume iteration from the original
         // block to inspect any newly inserted blocks. This allows incremental
-        // legalizaton of atomicrmw and cmpxchg.
+        // legalization of atomicrmw and cmpxchg.
         if (Next == E || BB != Next->getParent()) {
           BBI = BB->getIterator();
           BBE = F.end();


        


More information about the llvm-branch-commits mailing list