Commit 8acb1b3d by Roger Sayle Committed by Roger Sayle

builtins.c (fold_builtin_copysign): Delete unreachable code.


	* builtins.c (fold_builtin_copysign): Delete unreachable code.

From-SVN: r111615
parent 6d69fe27
2006-03-01 Roger Sayle <roger@eyesopen.com>
* builtins.c (fold_builtin_copysign): Delete unreachable code.
2006-03-01 Andrew Pinski <pinskia@physics.uc.edu>
PR target/25761
......
......@@ -8208,9 +8208,9 @@ fold_builtin_copysign (tree fndecl, tree arglist, tree type)
c1 = TREE_REAL_CST (arg1);
c2 = TREE_REAL_CST (arg2);
/* c1.sign := c2.sign. */
real_copysign (&c1, &c2);
return build_real (type, c1);
c1.sign = c2.sign;
}
/* copysign(X, Y) is fabs(X) when Y is always non-negative.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment