Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20050410-1.c
blobc4cd85279a97b24b958ba92314007c62345e105f
1 int s = 200;
2 int __attribute__((noinline))
3 foo (void)
5 return (signed char) (s - 100) - 5;
7 int
8 main (void)
10 if (foo () != 95)
11 abort ();
12 exit (0);