forked from OSchip/llvm-project
[ADT] fix typo in code block comment; NFC
This commit is contained in:
parent
ded0a70aeb
commit
f4b1272d3d
|
@ -2181,7 +2181,7 @@ inline const APInt &smax(const APInt &A, const APInt &B) {
|
|||
return A.sgt(B) ? A : B;
|
||||
}
|
||||
|
||||
/// Determine the smaller of two APInts considered to be signed.
|
||||
/// Determine the smaller of two APInts considered to be unsigned.
|
||||
inline const APInt &umin(const APInt &A, const APInt &B) {
|
||||
return A.ult(B) ? A : B;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue