[llvm] [NFC] Fix typo in comment in LowerMemIntrinsics.h (PR #147903)

Juan Manuel Martinez CaamaƱo via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 10 00:11:34 PDT 2025


https://github.com/jmmartinez created https://github.com/llvm/llvm-project/pull/147903

None

>From 78525e06f9f4824dbe24d361c84a7954d8ae3512 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Juan=20Manuel=20Martinez=20Caama=C3=B1o?= <juamarti at amd.com>
Date: Thu, 10 Jul 2025 08:51:05 +0200
Subject: [PATCH] [NFC] Fix typo in comment in LowerMemIntrinsics.h

---
 llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h b/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
index fe2625cb993ab..d4e72a60fc1ea 100644
--- a/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
+++ b/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
@@ -33,7 +33,7 @@ class Value;
 struct Align;
 
 /// Emit a loop implementing the semantics of llvm.memcpy where the size is not
-/// a compile-time constant. Loop will be insterted at \p InsertBefore.
+/// a compile-time constant. Loop will be inserted at \p InsertBefore.
 LLVM_ABI void createMemCpyLoopUnknownSize(
     Instruction *InsertBefore, Value *SrcAddr, Value *DstAddr, Value *CopyLen,
     Align SrcAlign, Align DestAlign, bool SrcIsVolatile, bool DstIsVolatile,



More information about the llvm-commits mailing list