Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / pr57371-2.c
blobd07cff318c25c1a4db7246c827f0440f25984f33
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" } } */
14 int foo2(long long x) {
15 /* { dg-final { scan-tree-dump "\\(double\\)" "optimized" } } */
16 return (double) x != 0;