[llvm] 4779488 - [SDPatternMatch] Fix typo in comment interger->integer. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 13 11:21:47 PDT 2025


Author: Craig Topper
Date: 2025-08-13T11:18:55-07:00
New Revision: 47794880f90a57c47474c17fbe330fadf296d263

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

LOG: [SDPatternMatch] Fix typo in comment interger->integer. NFC

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/SDPatternMatch.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/SDPatternMatch.h b/llvm/include/llvm/CodeGen/SDPatternMatch.h
index be90250b068f6..c468f2f676281 100644
--- a/llvm/include/llvm/CodeGen/SDPatternMatch.h
+++ b/llvm/include/llvm/CodeGen/SDPatternMatch.h
@@ -1098,9 +1098,9 @@ struct ConstantInt_match {
                                       BindVal ? *BindVal : Discard);
   }
 };
-/// Match any interger constants or splat of an integer constant.
+/// Match any integer constants or splat of an integer constant.
 inline ConstantInt_match m_ConstInt() { return ConstantInt_match(nullptr); }
-/// Match any interger constants or splat of an integer constant; return the
+/// Match any integer constants or splat of an integer constant; return the
 /// specific constant or constant splat value.
 inline ConstantInt_match m_ConstInt(APInt &V) { return ConstantInt_match(&V); }
 


        


More information about the llvm-commits mailing list