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_rparen_scan2.c
blob
42aa5445e90510f3f449b074df60e54d87caf78e
1
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
2
3
#define R_PAREN )
4
5
#define FUNC(a) a
6
7
static int
glob
= (
1
+
FUNC
(
1
R_PAREN
);
8
9
// CHECK: static int glob = (1 + 1 );
10