1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[ADT] fix typo in code block comment; NFC

This commit is contained in:
Sanjay Patel 2021-04-29 10:43:11 -04:00
parent b3c8d21495
commit 7ddc316273

View File

@ -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;
}