From 1d3534c0e71bac66e3ac1ec7d7a8071643c2bd1c Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Tue, 23 May 1995 14:38:27 -0700 Subject: [PATCH] (shift_amounts): Correct entry for shifts by 29. From-SVN: r9784 --- gcc/config/sh/sh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 1783a319ce3..4cd626974cb 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -699,7 +699,7 @@ static short shift_amounts[32][5] = { {16}, {16, 1}, {16, 2}, {16, 1, 2}, {16, 2, 2}, {16, 2, 1, 2}, {16, -2, 8}, {16, -1, 8}, {16, 8}, {16, 1, 8}, {16, 8, 2}, {16, 8, 1, 2}, - {16, 8, 2, 2}, {16, -1, -2, 8}, {16, -2, 16}, {16, -1, 16}}; + {16, 8, 2, 2}, {16, -1, -2, 16}, {16, -2, 16}, {16, -1, 16}}; /* This is used in length attributes in sh.md to help compute the length of arbitrary constant shift instructions. */ -- 2.30.2