annotate gcc/testsuite/gcc.dg/20050517-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Tree PRE is going to transform this so that it doesn't call cos on the
kono
parents:
diff changeset
2 d = 0 path, and in doing so, it needs to regenerate the cos call.
kono
parents:
diff changeset
3 This was ICE'ing due to an overly strict check on what it knew how
kono
parents:
diff changeset
4 to regenerate. */
kono
parents:
diff changeset
5 /* { dg-do compile } */
kono
parents:
diff changeset
6 /* { dg-options "-O2 -ffast-math" } */
kono
parents:
diff changeset
7 double cos(double);
kono
parents:
diff changeset
8 double f(double d, double i, int j) { if (j == 1) d = 0; return d * cos(i); }