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
/
_Pragma-physloc.c
blob
6d1dcdbd6120ed5e691d51a99e2ceafd44b9b60f
1
// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2
// CHECK: {{^}}#pragma x y z{{$}}
3
// CHECK: {{^}}#pragma a b c{{$}}
4
5
_Pragma
(
"x y z"
)
6
_Pragma
(
"a b c"
)
7