summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/grbx.c
blob: 92f732344a361d739a7d63827c330c2b3a69c580 (plain)
1
2
3
4
5
6
7
8
9
10
static int grbxx __attribute__ ((section (".data03"))) = 'g' + 'r' + 'b' + 'x';

int grbx (int x)
{
  if (x)
    return grbxx;
  else
    return 0;
}