From: kazu Date: Mon, 4 Apr 2005 20:42:11 +0000 (+0000) Subject: * config/frv/frv.h (PREDICATE_CODES): Add CONST to X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=863321b94724e7e0635d9a6963e6e6e4b1bd1f25;p=thirdparty%2Fgcc.git * config/frv/frv.h (PREDICATE_CODES): Add CONST to gpr_or_int12_operand. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97575 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 91676a929b2b..f7e21e705aff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-04 Kazu Hirata + + * config/frv/frv.h (PREDICATE_CODES): Add CONST to + gpr_or_int12_operand. + 2004-04-04 Richard Sandiford PR target/19537 diff --git a/gcc/config/frv/frv.h b/gcc/config/frv/frv.h index a80d534f3bf0..1cd416d0732b 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 }}, \