Commit 6a51f4a0 by Richard Kenner Committed by Richard Kenner

simplify-rtx.c (simplify_unary_operation): Add cases FLOAT_EXTEND and…

simplify-rtx.c (simplify_unary_operation): Add cases FLOAT_EXTEND and FLOAT_TRUNCATE to ones that return 0.

	* simplify-rtx.c (simplify_unary_operation): Add cases
	FLOAT_EXTEND and FLOAT_TRUNCATE to ones that return 0.

From-SVN: r36471
parent 87c31d6b
Sun Sep 17 10:46:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* simplify-rtx.c (simplify_unary_operation): Add cases
FLOAT_EXTEND and FLOAT_TRUNCATE to ones that return 0.
2000-09-17 Bernd Schmidt <bernds@redhat.co.uk>
* expr.h (emit_library_call, emit_library_call_value): Delete
......
......@@ -389,6 +389,8 @@ simplify_unary_operation (code, mode, op, op_mode)
break;
case SQRT:
case FLOAT_EXTEND:
case FLOAT_TRUNCATE:
return 0;
default:
......
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