Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20000412-1.c
blobc9f71305df25c09f1d4c5ee177454d9947d818a6
1 short int i = -1;
2 const char * const wordlist[207];
4 const char * const *
5 foo(void)
7 register const char * const *wordptr = &wordlist[207u + i];
8 return wordptr;
11 int
12 main()
14 if (foo() != &wordlist[206])
15 abort ();
16 exit(0);