diff options
author | Ben Elliston <bje@au.ibm.com> | 2000-10-24 01:02:53 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2000-10-24 01:02:53 +0000 |
commit | 8f1e3ff59180bdd07333b0e68bbfa6ba00d49870 (patch) | |
tree | 49597228ad94676039b2c869a4ccfeb32168f4be /sim/sh | |
parent | e26cc3490a00a58329c61e33afd8e682e449b475 (diff) | |
download | gdb-8f1e3ff59180bdd07333b0e68bbfa6ba00d49870.zip gdb-8f1e3ff59180bdd07333b0e68bbfa6ba00d49870.tar.gz gdb-8f1e3ff59180bdd07333b0e68bbfa6ba00d49870.tar.bz2 |
* pendanticism
2000-10-24 Ben Elliston <bje@redhat.com>
* gencode.c (tab): Delimit strings with commas where applicable.
Diffstat (limited to 'sim/sh')
-rw-r--r-- | sim/sh/ChangeLog | 4 | ||||
-rw-r--r-- | sim/sh/gencode.c | 28 |
2 files changed, 17 insertions, 15 deletions
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index f82652a..ae8773a 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,3 +1,7 @@ +2000-10-24 Ben Elliston <bje@redhat.com> + + * gencode.c (tab): Delimit strings with commas where applicable. + Tue May 23 21:39:23 2000 Andrew Cagney <cagney@b1.cygnus.com> * configure: Regenerated to track ../common/aclocal.m4 changes. diff --git a/sim/sh/gencode.c b/sim/sh/gencode.c index 02605fc..ba6ee4c 100644 --- a/sim/sh/gencode.c +++ b/sim/sh/gencode.c @@ -41,9 +41,7 @@ typedef struct char *code; char *stuff[MAX_NR_STUFF]; int index; -} - -op; +} op; op tab[] = @@ -1321,7 +1319,7 @@ op ppi_tab[] = " res = Sz << i;", "else if (i >= 128 - 16)", " res = Sz >> 128 - i;", - "else" + "else", " {", " RAISE_EXCEPTION (SIGILL);", " return;", @@ -1336,7 +1334,7 @@ op ppi_tab[] = "", "if (i < 32)", " {", - " if (i == 32)" + " if (i == 32)", " {", " res = 0;", " res_grd = Sz;", @@ -1352,7 +1350,7 @@ op ppi_tab[] = "else if (i >= 96)", " {", " i = 128 - i;", - " if (i == 32)" + " if (i == 32)", " {", " res_grd = SIGN32 (Sz_grd);", " res = Sz_grd;", @@ -1364,7 +1362,7 @@ op ppi_tab[] = " }", " carry = Sz >> (i - 1) & 1;", " }", - "else" + "else", " {", " RAISE_EXCEPTION (SIGILL);", " return;", @@ -1540,7 +1538,7 @@ op ppi_tab[] = " res = Sx << Sy;", "else if (Sy >= 128 - 16)", " res = Sx >> 128 - Sy;", - "else" + "else", " {", " RAISE_EXCEPTION (SIGILL);", " return;", @@ -1554,7 +1552,7 @@ op ppi_tab[] = "", "if (Sy < 32)", " {", - " if (Sy == 32)" + " if (Sy == 32)", " {", " res = 0;", " res_grd = Sx;", @@ -1570,7 +1568,7 @@ op ppi_tab[] = "else if (Sy >= 96)", " {", " Sy = 128 - Sy;", - " if (Sy == 32)" + " if (Sy == 32)", " {", " res_grd = SIGN32 (Sx_grd);", " res = Sx_grd;", @@ -1582,7 +1580,7 @@ op ppi_tab[] = " }", " carry = Sx >> (Sy - 1) & 1;", " }", - "else" + "else", " {", " RAISE_EXCEPTION (SIGILL);", " return;", @@ -1694,7 +1692,7 @@ op ppi_tab[] = { "","", "(if cc) pdmsb Sx,Dz", "100111ccxx..zzzz", "unsigned Sx = DSP_R (x);", "int Sx_grd = GET_DSP_GRD (x);", - "int i = 16;" + "int i = 16;", "", "if (Sx_grd < 0)", " {", @@ -1710,7 +1708,7 @@ op ppi_tab[] = " res = 30;", "else", " res = 31;", - "do" + "do", " {", " if (Sx & ~0 << i)", " {", @@ -1727,13 +1725,13 @@ op ppi_tab[] = }, { "","", "(if cc) pdmsb Sy,Dz", "101111cc..yyzzzz", "unsigned Sy = DSP_R (y);", - "int i;" + "int i;", "", "if (Sy < 0)", " Sy = ~Sy;", "Sy <<= 1;", "res = 31;", - "do" + "do", " {", " if (Sy & ~0 << i)", " {", |