diff options
Diffstat (limited to 'clang/test/Preprocessor/print_line_track.c')
-rw-r--r-- | clang/test/Preprocessor/print_line_track.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/print_line_track.c b/clang/test/Preprocessor/print_line_track.c new file mode 100644 index 0000000..fb2ccf2 --- /dev/null +++ b/clang/test/Preprocessor/print_line_track.c @@ -0,0 +1,17 @@ +/* RUN: %clang_cc1 -E %s | grep 'a 3' + * RUN: %clang_cc1 -E %s | grep 'b 16' + * RUN: %clang_cc1 -E -P %s | grep 'a 3' + * RUN: %clang_cc1 -E -P %s | grep 'b 16' + * RUN: %clang_cc1 -E %s | not grep '# 0 ' + * RUN: %clang_cc1 -E -P %s | count 4 + * PR1848 PR3437 PR7360 +*/ + +#define t(x) x + +t(a +3) + +t(b +__LINE__) + |