OSDN Git Service

Merge lto branch into trunk.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20000227-1.c
1 static const unsigned char f[] = "\0\377";
2 static const unsigned char g[] = "\0ΓΏ";
3
4 int main(void)
5 {
6   if (sizeof f != 3 || sizeof g != 3)
7     abort ();
8   if (f[0] != g[0])
9     abort ();
10   if (f[1] != g[1])
11     abort ();
12   if (f[2] != g[2])
13     abort ();
14   return 0;
15 }