mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
10 lines
141 B
C
10 lines
141 B
C
static int barx __attribute__ ((section (".data01"))) = 'b' + 'a' + 'r';
|
|
|
|
int bar (int x)
|
|
{
|
|
if (x)
|
|
return barx;
|
|
else
|
|
return 0;
|
|
}
|