Skip to content

Commit 4779488

Browse files
committed
[SDPatternMatch] Fix typo in comment interger->integer. NFC
1 parent b811d4d commit 4779488

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/CodeGen/SDPatternMatch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,9 +1098,9 @@ struct ConstantInt_match {
10981098
BindVal ? *BindVal : Discard);
10991099
}
11001100
};
1101-
/// Match any interger constants or splat of an integer constant.
1101+
/// Match any integer constants or splat of an integer constant.
11021102
inline ConstantInt_match m_ConstInt() { return ConstantInt_match(nullptr); }
1103-
/// Match any interger constants or splat of an integer constant; return the
1103+
/// Match any integer constants or splat of an integer constant; return the
11041104
/// specific constant or constant splat value.
11051105
inline ConstantInt_match m_ConstInt(APInt &V) { return ConstantInt_match(&V); }
11061106

0 commit comments

Comments
 (0)