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
[Clang] Prevent `mlink-builtin-bitcode` from internalizing the RPC client (#118661)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
macros
/
macro2.h
blob
cec6efbba990e95a543f55d19abd6578358c426b
1
#define HUNDRED 100
2
#define THOUSAND 1000
3
#define MILLION 1000000
4
5
#define MAX(a, b)\
6
((a) > (b) ?\
7
(a):\
8
(b))