diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-09-12 12:38:51 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-09-12 12:38:51 +0000 |
commit | ae0a1c23b769ac9d8fa1b572b5effcb7a275a494 (patch) | |
tree | 89d10be1f8c47b7f63a1b0e2aa90ead23e7d95a6 /gcc/config/sh | |
parent | c3e76028d0a476503e8be8448a9ab0803b4f26b7 (diff) | |
download | gcc-ae0a1c23b769ac9d8fa1b572b5effcb7a275a494.zip gcc-ae0a1c23b769ac9d8fa1b572b5effcb7a275a494.tar.gz gcc-ae0a1c23b769ac9d8fa1b572b5effcb7a275a494.tar.bz2 |
sh.h (PREDICATE_CODES): Add CONST_DOUBLE to general_movsrc_operand...
* config/sh/sh.h (PREDICATE_CODES): Add CONST_DOUBLE to
general_movsrc_operand, and remove CONST_INT from
general_movdst_operand.
From-SVN: r36357
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index f8c729e..0f00c0d 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -2231,8 +2231,8 @@ extern struct rtx_def *fpscr_rtx; {"fp_arith_reg_operand", {SUBREG, REG}}, \ {"fp_extended_operand", {SUBREG, REG, FLOAT_EXTEND}}, \ {"fpscr_operand", {REG}}, \ - {"general_movsrc_operand", {SUBREG, REG, CONST_INT, MEM}}, \ - {"general_movdst_operand", {SUBREG, REG, CONST_INT, MEM}}, \ + {"general_movsrc_operand", {SUBREG, REG, CONST_INT, CONST_DOUBLE, MEM}}, \ + {"general_movdst_operand", {SUBREG, REG, MEM}}, \ {"logical_operand", {SUBREG, REG, CONST_INT}}, \ {"noncommutative_float_operator", {MINUS, DIV}}, \ {"register_operand", {SUBREG, REG}}, |