[llvm] 8dd2eb1 - GlobalISel: Fix typo

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 11 10:09:06 PDT 2020


Author: Matt Arsenault
Date: 2020-08-11T13:08:56-04:00
New Revision: 8dd2eb10bbc40610b8943cfb04a81e9c7dbc71e1

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

LOG: GlobalISel: Fix typo

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h b/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
index 57cc693e1817..95eefe64ea49 100644
--- a/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
+++ b/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
@@ -183,7 +183,7 @@ struct TypePairAndMemDesc {
            MemSize == Other.MemSize;
   }
 
-  /// \returns true if this memory access is legal with for the acecss described
+  /// \returns true if this memory access is legal with for the access described
   /// by \p Other (The alignment is sufficient for the size and result type).
   bool isCompatible(const TypePairAndMemDesc &Other) const {
     return Type0 == Other.Type0 && Type1 == Other.Type1 &&


        


More information about the llvm-commits mailing list