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
kernel-printf: add printf format %pra for struct range
[smatch.git]
/
validation
/
preprocessor
/
preprocessor10.c
blob
02b56df4e81405407c787ae6d551cf0201f1f5ee
1
/* concatenation of 'defi' and 'ned' should result in the same token
2
* we would get if we had 'defined' in the input stream.
3
*/
4
#define A
5
#define B defi ## ned
6
#if B(A)
7
defined
8
#else
9
undefined
10
#endif
11
/*
12
* check-name: Preprocessor #10
13
* check-command: sparse -E $file
14
*
15
* check-output-start
16
17
defined
18
* check-output-end
19
*/