aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaz Kojima <kkojima@gcc.gnu.org>2007-03-10 06:57:16 +0000
committerKaz Kojima <kkojima@gcc.gnu.org>2007-03-10 06:57:16 +0000
commit343d66ade59f0f8b2a7e94bbdfa7240997efa8a0 (patch)
tree303cc94e832977cfcd2b94274ed4fb00791502a6 /gcc
parent07288ab03780bf84d7c0771b6bd76a78160d75d5 (diff)
downloadgcc-343d66ade59f0f8b2a7e94bbdfa7240997efa8a0.zip
gcc-343d66ade59f0f8b2a7e94bbdfa7240997efa8a0.tar.gz
gcc-343d66ade59f0f8b2a7e94bbdfa7240997efa8a0.tar.bz2
sh.c (sh_insn_length_adjustment): Adjust for the change of decode_asm_operands.
* config/sh/sh.c (sh_insn_length_adjustment): Adjust for the change of decode_asm_operands. From-SVN: r122792
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/sh/sh.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ee77d38..5e2f3ea 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2007-03-10 Kaz Kojima <kkojima@gcc.gnu.org>
+ * config/sh/sh.c (sh_insn_length_adjustment): Adjust for
+ the change of decode_asm_operands.
+
+2007-03-10 Kaz Kojima <kkojima@gcc.gnu.org>
+
* mode-switching.c (create_pre_exit): Skip blockage insn.
2007-03-09 Diego Novillo <dnovillo@redhat.com>
diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c
index bb2776f..68f8ec1 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