OSDN Git Service

* gcc.c-torture/execute/20000412-1.c: Reduce some more.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20000412-1.c
1 short int i = -1;
2 const char * const wordlist[207];
3
4 const char * const *
5 foo(void)
6 {
7   register const char * const *wordptr = &wordlist[207u + i];
8   return wordptr;
9 }
10
11 int
12 main()
13 {
14   if (foo() != &wordlist[206])
15     abort ();
16   exit(0);
17 }