projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ded0a70
)
[ADT] fix typo in code block comment; NFC
author
Sanjay Patel
<spatel@rotateright.com>
Thu, 29 Apr 2021 14:43:11 +0000
(10:43 -0400)
committer
Sanjay Patel
<spatel@rotateright.com>
Thu, 29 Apr 2021 16:09:22 +0000
(12:09 -0400)
llvm/include/llvm/ADT/APInt.h
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/ADT/APInt.h
b/llvm/include/llvm/ADT/APInt.h
index
0cd4a0c
..
7b531ba
100644
(file)
--- a/
llvm/include/llvm/ADT/APInt.h
+++ b/
llvm/include/llvm/ADT/APInt.h
@@
-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
un
signed.
inline const APInt &umin(const APInt &A, const APInt &B) {
return A.ult(B) ? A : B;
}