Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 930608-1.c
blob004a440070959239c02814b9e3ad917899cdd9ca
1 double f (double a) {}
2 double (* const a[]) (double) = {&f};
4 main ()
6 double (*p) ();
7 p = &f;
8 if (p != a[0])
9 abort ();
10 exit (0);