aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20070724-1.c
blob: 011a903f8d31f00d00c975ee12a1878dd55a70b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
void abort (void);

static unsigned char magic[] = "\235";
static unsigned char value = '\235';

int main()
{
  if (value != magic[0])
    abort ();
  return 0;
}