repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
modules-incomplete
/
minmax.h
blob
efad1201695f11eaf177e545aba1cf9897f2777a
1
#define MY_MIN(A, B) (((A) < (B)) ? (A) : (B))
2
#define MY_MAX(A, B) (((A) < (B)) ? (B) : (A))