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_fn_lparen_scan2.c
blob
c23e7412b8505b3d2df19edfed3b2b6b3b88a5d3
1
// RUN: %clang_cc1 -E %s | grep 'FUNC (3 +1);'
2
3
#define F(a) a
4
#define FUNC(a) (a+1)
5
6
F
(
FUNC
)
FUNC
(
3
);
/* final token sequence is FUNC(3+1) */
7