2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20030804-1.c
blob189fde3cee5fd2825adfb13323cc2046096602d9
1 /* Extracted from PR middle-end/11771. */
2 /* The following testcase used to ICE without -ffast-math from unbounded
3 recursion in fold. This was due to the logic in negate_expr_p not
4 matching that in negate_expr. */
6 double f(double x) {
7 return -(1 - x) + (x ? -(1 - x) : 0);