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_not_define.c
blob
c0e9c858311181fc792f368305edbbc3ee47058a
1
// RUN: %clang_cc1 -E %s | FileCheck %s --match-full-lines --strict-whitespace
2
// CHECK: # define X 3
3
4
#define H #
5
#define D define
6
7
#define DEFINE(a, b) H D a b
8
9
DEFINE
(
X
,
3
)
10