[llvm] b53025b - GlobalISel: Fix typos

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 13 12:19:33 PST 2020


Author: Matt Arsenault
Date: 2020-11-13T15:19:26-05:00
New Revision: b53025bb1d3df08df6d7997794925ece2bc71d84

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

LOG: GlobalISel: Fix typos

Added: 
    

Modified: 
    llvm/include/llvm/Target/GenericOpcodes.td

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Target/GenericOpcodes.td b/llvm/include/llvm/Target/GenericOpcodes.td
index 4cda6a8c511d..63a0713b736c 100644
--- a/llvm/include/llvm/Target/GenericOpcodes.td
+++ b/llvm/include/llvm/Target/GenericOpcodes.td
@@ -1151,7 +1151,7 @@ def G_INTRINSIC : GenericInstruction {
   let hasSideEffects = 0;
 
   // Conservatively assume this is convergent. If there turnes out to
-  // be a need, there should be separate convergent intrinsic opcode.s
+  // be a need, there should be separate convergent intrinsic opcodes.
   let isConvergent = 1;
 }
 
@@ -1164,7 +1164,7 @@ def G_INTRINSIC_W_SIDE_EFFECTS : GenericInstruction {
   let mayStore = 1;
 
   // Conservatively assume this is convergent. If there turnes out to
-  // be a need, there should be separate convergent intrinsic opcode.s
+  // be a need, there should be separate convergent intrinsic opcodes.
   let isConvergent = 1;
 }
 


        


More information about the llvm-commits mailing list