(fold_negate_expr): Likewise.
testsuite:
* gcc.dg/builtins-20.c: Add more cases.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121639
138bc75d-0d04-0410-961f-
82ee72b054a4
+2007-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * fold-const.c (negate_expr_p): Handle CONJ_EXPR.
+ (fold_negate_expr): Likewise.
+
2007-02-05 Alexandre Oliva <aoliva@redhat.com>
PR debug/30189
return negate_expr_p (TREE_OPERAND (t, 0))
&& negate_expr_p (TREE_OPERAND (t, 1));
+ case CONJ_EXPR:
+ return negate_expr_p (TREE_OPERAND (t, 0));
+
case PLUS_EXPR:
if (HONOR_SIGN_DEPENDENT_ROUNDING (TYPE_MODE (type))
|| HONOR_SIGNED_ZEROS (TYPE_MODE (type)))
fold_negate_expr (TREE_OPERAND (t, 1)));
break;
+ case CONJ_EXPR:
+ if (negate_expr_p (t))
+ return fold_build1 (CONJ_EXPR, type,
+ fold_negate_expr (TREE_OPERAND (t, 0)));
+ break;
+
case NEGATE_EXPR:
return TREE_OPERAND (t, 0);
+2007-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * gcc.dg/builtins-20.c: Add more cases.
+
2007-02-05 Alexandre Oliva <aoliva@redhat.com>
PR debug/30189
if (ccos(i ? x : ctan(y/x)) != ccos(i ? -x : -ctan(-y/x)))
link_error();
+
+ if (~x != -~-x)
+ link_error();
+
+ if (ccos(~x) != ccos(-~-x))
+ link_error();
+
+ if (ctan(~(x-y)) != -ctan(~(y-x)))
+ link_error();
+
+ if (ctan(~(x/y)) != -ctan(~(x/-y)))
+ link_error();
}
void test1f(float x)
if (ccosf(i ? x : ctanf(y/x)) != ccosf(i ? -x : -ctanf(-y/x)))
link_error();
+
+ if (~x != -~-x)
+ link_error();
+
+ if (ccosf(~x) != ccosf(-~-x))
+ link_error();
+
+ if (ctanf(~(x-y)) != -ctanf(~(y-x)))
+ link_error();
+
+ if (ctanf(~(x/y)) != -ctanf(~(x/-y)))
+ link_error();
}
void test1l(long double x)
if (ccosl(i ? x : ctanl(y/x)) != ccosl(i ? -x : -ctanl(-y/x)))
link_error();
+
+ if (~x != -~-x)
+ link_error();
+
+ if (ccosl(~x) != ccosl(-~-x))
+ link_error();
+
+ if (ctanl(~(x-y)) != -ctanl(~(y-x)))
+ link_error();
+
+ if (ctanl(~(x/y)) != -ctanl(~(x/-y)))
+ link_error();
}
int main()