2009-08-25 15:38:29 +00:00
|
|
|
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
2004-11-06 22:41:00 +00:00
|
|
|
|
2003-11-01 23:42:08 +00:00
|
|
|
typedef struct { } the_coolest_struct_in_the_world;
|
|
|
|
extern the_coolest_struct_in_the_world xyzzy;
|
|
|
|
void *foo() { return &xyzzy; }
|
|
|
|
|