We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b811d4d commit 4779488Copy full SHA for 4779488
llvm/include/llvm/CodeGen/SDPatternMatch.h
@@ -1098,9 +1098,9 @@ struct ConstantInt_match {
1098
BindVal ? *BindVal : Discard);
1099
}
1100
};
1101
-/// Match any interger constants or splat of an integer constant.
+/// Match any integer constants or splat of an integer constant.
1102
inline ConstantInt_match m_ConstInt() { return ConstantInt_match(nullptr); }
1103
-/// Match any interger constants or splat of an integer constant; return the
+/// Match any integer constants or splat of an integer constant; return the
1104
/// specific constant or constant splat value.
1105
inline ConstantInt_match m_ConstInt(APInt &V) { return ConstantInt_match(&V); }
1106
0 commit comments