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
/
2003-11-01-EmptyStructCrash.c
blob
14d63dc4787814cefd207f531dcfaeb54c5f798f
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
typedef
struct
{ }
the_coolest_struct_in_the_world
;
4
extern
the_coolest_struct_in_the_world xyzzy
;
5
void
*
foo
(
void
) {
return
&
xyzzy
; }
6