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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
macro_rescan.c
blob
83a1975b4e5f5b6112272214283a56a0c4304712
1
// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2
3
#define M1(a) (a+1)
4
#define M2(b) b
5
6
int
ei_1
=
M2
(
M1
)(
17
);
7
// CHECK: {{^}}int ei_1 = (17 +1);{{$}}
8
9
int
ei_2
= (
M2
(
M1
))(
17
);
10
// CHECK: {{^}}int ei_2 = (M1)(17);{{$}}
11