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
/
c99-6_10_3_3_p4.c
blob
320e6cf3e2a2fbece9f36a3df64af6265ae5a047
1
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
2
3
#define hash_hash # ## #
4
#define mkstr(a) # a
5
#define in_between(a) mkstr(a)
6
#define join(c, d) in_between(c hash_hash d)
7
char
p
[] =
join
(
x
,
y
);
8
9
// CHECK: char p[] = "x ## y";
10