Disable gnat.dg/socket1.adb on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / c-c++-common / pr57371-2.c
blob8d11880a6f5e749af64e95c11a75cb40e2e3da7d
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized" } */
4 /* We can not get rid of comparison in tests below because of
5 potential inexact exception.
7 TODO: enable when -fno-trapping-math. */
9 int foo1(int x) {
10 return (float) x != 0;
11 /* { dg-final { scan-tree-dump "\\(float\\)" "optimized" { xfail { ! int_eq_float } } } } */
14 int foo2(long long x) {
15 /* { dg-final { scan-tree-dump "\\(double\\)" "optimized" } } */
16 return (double) x != 0;