diff options
author | kkojima <kkojima@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-09 23:42:29 +0000 |
---|---|---|
committer | kkojima <kkojima@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-09 23:42:29 +0000 |
commit | fbe5f7907d9e62cd30427c8ddc334efdd8798847 (patch) | |
tree | 38fcf85a1f649f2206ba78a970f1519b73f57ee9 /gcc/config/sh | |
parent | e8eb4a8edef645a76ce344d8389b9d5a7f7ef7ef (diff) | |
download | gcc-fbe5f7907d9e62cd30427c8ddc334efdd8798847.tar.gz |
* config/sh/sh.md (mextr_rl): Set buffer size properly.
(*mextr_lr): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100808 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index de46e08c82d..4b53129a419 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -11613,7 +11613,7 @@ mov.l\\t1f,r0\\n\\ "TARGET_SHMEDIA && INTVAL (operands[3]) + INTVAL (operands[4]) == 64" "* { - static char templ[16]; + static char templ[21]; sprintf (templ, \"mextr%d\\t%%N1, %%N2, %%0\", (int) INTVAL (operands[3]) >> 3); @@ -11630,7 +11630,7 @@ mov.l\\t1f,r0\\n\\ "TARGET_SHMEDIA && INTVAL (operands[3]) + INTVAL (operands[4]) == 64" "* { - static char templ[16]; + static char templ[21]; sprintf (templ, \"mextr%d\\t%%N2, %%N1, %%0\", (int) INTVAL (operands[4]) >> 3); |