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
This commit is contained in:
parent
87c31d6b90
commit
6a51f4a073
@ -1,3 +1,8 @@
|
|||||||
|
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>
|
2000-09-17 Bernd Schmidt <bernds@redhat.co.uk>
|
||||||
|
|
||||||
* expr.h (emit_library_call, emit_library_call_value): Delete
|
* expr.h (emit_library_call, emit_library_call_value): Delete
|
||||||
|
@ -389,6 +389,8 @@ simplify_unary_operation (code, mode, op, op_mode)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SQRT:
|
case SQRT:
|
||||||
|
case FLOAT_EXTEND:
|
||||||
|
case FLOAT_TRUNCATE:
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user