From: kkojima Date: Sat, 10 Mar 2007 06:57:16 +0000 (+0000) Subject: * config/sh/sh.c (sh_insn_length_adjustment): Adjust for X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=796e447687e4aa4c0236af20aea22df40b618d66;p=thirdparty%2Fgcc.git * config/sh/sh.c (sh_insn_length_adjustment): Adjust for the change of decode_asm_operands. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122792 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ee77d386d48d..5e2f3ea58167 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-10 Kaz Kojima + + * config/sh/sh.c (sh_insn_length_adjustment): Adjust for + the change of decode_asm_operands. + 2007-03-10 Kaz Kojima * mode-switching.c (create_pre_exit): Skip blockage insn. diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index bb2776f1c894..68f8ec1fa1f2 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -8594,7 +8594,7 @@ sh_insn_length_adjustment (rtx insn) template = XSTR (body, 0); else if (asm_noperands (body) >= 0) template - = decode_asm_operands (body, NULL, NULL, NULL, NULL); + = decode_asm_operands (body, NULL, NULL, NULL, NULL, NULL); else return 0; do