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]
/
clang
/
test
/
Preprocessor
/
print_line_track.c
blob
156ae22693b85915ac5d435ff28f4cdd5e8a1594
1
/* RUN: %clang_cc1 -E %s | grep 'a 3'
2
* RUN: %clang_cc1 -E %s | grep 'b 16'
3
* RUN: %clang_cc1 -E -P %s | grep 'a 3'
4
* RUN: %clang_cc1 -E -P %s | grep 'b 16'
5
* RUN: %clang_cc1 -E %s | not grep '# 0 '
6
* RUN: %clang_cc1 -E -P %s | count 2
7
* PR1848 PR3437 PR7360
8
*/
9
10
#define t(x) x
11
12
t
(
a
13
3
)
14
15
t
(
b
16
__LINE__
)
17