diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-13 08:30:11 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-13 08:30:11 -0500 |
commit | 831522a46e410eb9332a0883cfd3b50105aea4db (patch) | |
tree | 30b21d78219f97da296331639ca9bd9ca74f0905 /gcc | |
parent | 53d74c3c5d100e37be8982b01917d60d9864f36a (diff) | |
download | gcc-831522a46e410eb9332a0883cfd3b50105aea4db.zip gcc-831522a46e410eb9332a0883cfd3b50105aea4db.tar.gz gcc-831522a46e410eb9332a0883cfd3b50105aea4db.tar.bz2 |
(simplify_binary_operation): Protect real_value_truncate inside
handler.
From-SVN: r6767
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3325,8 +3325,8 @@ simplify_binary_operation (code, mode, op0, op1) } #endif - set_float_handler (NULL_PTR); value = real_value_truncate (mode, value); + set_float_handler (NULL_PTR); return immed_real_const_1 (value, mode); } #endif /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */ |