[llvm] b5e470a - [LowerMemIntrinsics] Typo fix.

Michael Liao via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 8 19:39:42 PDT 2021


Author: Michael Liao
Date: 2021-08-08T22:38:58-04:00
New Revision: b5e470aa2e978a0ee6276b9564f85cf170ae260d

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

LOG: [LowerMemIntrinsics] Typo fix.

Added: 
    

Modified: 
    llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp b/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
index 616b4e8eb01c9..8dc4702993c35 100644
--- a/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
+++ b/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
@@ -442,7 +442,7 @@ void llvm::expandMemCpyAsLoop(MemCpyInst *Memcpy,
         /* DestAlign */ Memcpy->getDestAlign().valueOrOne(),
         /* SrcIsVolatile */ Memcpy->isVolatile(),
         /* DstIsVolatile */ Memcpy->isVolatile(),
-        /* TargetTransfomrInfo */ TTI);
+        /* TargetTransformInfo */ TTI);
   }
 }
 


        


More information about the llvm-commits mailing list