blob: f59029d05533e36a1aa11f1e17e13bc0ee179834 [file] [log] [blame]
#include <config.h>
#ifdef HAVE_ASM_UNIQUE_OBJECT
asm (".data;"
".globl var\n"
".type var, %gnu_unique_object\n"
".size var, 4\n"
"var:.zero 4\n"
".previous");
extern int var;
int *
f (void)
{
var = 1;
return &var;
}
#endif