repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
side_effects: the iterate_all_kinds() macro has side effects deliberately
[smatch.git]
/
validation
/
preprocessor
/
preprocessor2.c
blob
56abb53cf6405b11c84506ffda83eea9f94d1053
1
#define TWO a, b
2
3
#define UNARY(x) BINARY(x)
4
#define BINARY(x, y) x + y
5
6
UNARY
(
TWO
)
7
/*
8
* check-name: Preprocessor #2
9
* check-command: sparse -E $file
10
*
11
* check-output-start
12
13
a + b
14
* check-output-end
15
*/