diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-04 20:42:11 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-04 20:42:11 +0000 |
commit | 71294e1e3175661f955e759e4d4c94c794518970 (patch) | |
tree | c52c5f7a6594d77a4867a610e4c661bd67e52a32 /gcc | |
parent | 92e9e0caf3ad65462beec7c23853501ffd41b006 (diff) | |
download | gcc-71294e1e3175661f955e759e4d4c94c794518970.zip gcc-71294e1e3175661f955e759e4d4c94c794518970.tar.gz gcc-71294e1e3175661f955e759e4d4c94c794518970.tar.bz2 |
frv.h (PREDICATE_CODES): Add CONST to gpr_or_int12_operand.
* config/frv/frv.h (PREDICATE_CODES): Add CONST to
gpr_or_int12_operand.
From-SVN: r97575
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/frv/frv.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 91676a9..f7e21e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-04 Kazu Hirata <kazu@cs.umass.edu> + + * config/frv/frv.h (PREDICATE_CODES): Add CONST to + gpr_or_int12_operand. + 2004-04-04 Richard Sandiford <rsandifo@redhat.com> PR target/19537 diff --git a/gcc/config/frv/frv.h b/gcc/config/frv/frv.h index a80d534..1cd416d 100644 --- a/gcc/config/frv/frv.h +++ b/gcc/config/frv/frv.h @@ -2781,7 +2781,7 @@ do { \ { "frv_load_operand", { REG, SUBREG, MEM }}, \ { "gpr_no_subreg_operand", { REG }}, \ { "gpr_or_fpr_operand", { REG, SUBREG }}, \ - { "gpr_or_int12_operand", { REG, SUBREG, CONST_INT }}, \ + { "gpr_or_int12_operand", { REG, SUBREG, CONST_INT, CONST }}, \ { "gpr_fpr_or_int12_operand", { REG, SUBREG, CONST_INT }}, \ { "gpr_or_int10_operand", { REG, SUBREG, CONST_INT }}, \ { "gpr_or_int_operand", { REG, SUBREG, CONST_INT }}, \ |