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
/
CodeGen
/
2007-02-04-EmptyStruct.c
blob
2b2896f6d11a1d7d43b747a3092ef3cb10463f95
1
// RUN: %clang_cc1 %s -O3 -emit-llvm -o -
2
// PR1175
3
4
struct
empty
{ };
5
6
void
foo
(
struct
empty
*
p
) {
7
p
++;
8
}
9