Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / ieee / fp-cmp-7.c
blob385acafc204cb049a097a92b3efa51d1e65f16d6
1 extern void link_error ();
3 void foo(double x)
5 if (x > __builtin_inf())
6 link_error ();
9 int main ()
11 foo (1.0);
12 return 0;