Sign in
llvm
/
llvm-project
/
llvm
/
265bbb58e7ee276f47857d997e772da151f8d443
/
.
/
test
/
Regression
/
CFrontend
/
2003-11-01-EmptyStructCrash.c
blob: fb6993bb209f5c6afac057723b2a58fda768d4ad [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
typedef
struct
{
}
the_coolest_struct_in_the_world
;
extern
the_coolest_struct_in_the_world xyzzy
;
void
*
foo
()
{
return
&
xyzzy
;
}