old-cross-binutils/gdb/testsuite/gdb.base/bar.c

10 lines
141 B
C
Raw Normal View History

static int barx __attribute__ ((section (".data01"))) = 'b' + 'a' + 'r';
int bar (int x)
{
if (x)
return barx;
else
return 0;
}