diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-09-17 14:33:37 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-09-17 10:33:37 -0400 |
commit | 6a51f4a073efca1862f0de46b4de066064a1ee58 (patch) | |
tree | 8f36d5f3dae5405b232a966c1cf6d0f1b14887ed /gcc/simplify-rtx.c | |
parent | 87c31d6b906a2c0b15d8398518c2cb2bdfd2205f (diff) | |
download | gcc-6a51f4a073efca1862f0de46b4de066064a1ee58.zip gcc-6a51f4a073efca1862f0de46b4de066064a1ee58.tar.gz gcc-6a51f4a073efca1862f0de46b4de066064a1ee58.tar.bz2 |
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
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 0091d72..1e13076 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -389,6 +389,8 @@ simplify_unary_operation (code, mode, op, op_mode) break; case SQRT: + case FLOAT_EXTEND: + case FLOAT_TRUNCATE: return 0; default: |