diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-20 19:12:11 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-20 19:12:11 +0000 |
commit | ae0bc81a388fd5210fa1a23e8debf1871459e86f (patch) | |
tree | 2bf0245a0338faf395ac8ee15044ca3cae3be29d /gcc | |
parent | 93c3d169bb407bae416d728da04466708ef2d1e4 (diff) | |
download | gcc-ae0bc81a388fd5210fa1a23e8debf1871459e86f.zip gcc-ae0bc81a388fd5210fa1a23e8debf1871459e86f.tar.gz gcc-ae0bc81a388fd5210fa1a23e8debf1871459e86f.tar.bz2 |
entered into RCS
From-SVN: r536
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/crds.h | 4 | ||||
-rw-r--r-- | gcc/config/m68k/news.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/crds.h b/gcc/config/m68k/crds.h index 91c4047..2f768c4 100644 --- a/gcc/config/m68k/crds.h +++ b/gcc/config/m68k/crds.h @@ -255,7 +255,7 @@ do { union { double f; long l[2];} tem; \ sp@, (sp) or (%sp) depending on the style of syntax. '#' for an immediate operand prefix (# in MIT and Motorola syntax but & in SGS syntax, $ in unos syntax). - '!' for the cc register (used in an `and to cc' insn). + '!' for the fpcr register (used in some float-to-fixed conversions). 'b' for byte insn (no effect, on the Sun; this is for the ISI). 'd' to force memory addressing to be absolute, not relative. @@ -281,7 +281,7 @@ do { union { double f; long l[2];} tem; \ else if (CODE == '-') fprintf (FILE, "-(sp)"); \ else if (CODE == '+') fprintf (FILE, "(sp)+"); \ else if (CODE == '@') fprintf (FILE, "(sp)"); \ - else if (CODE == '!') fprintf (FILE, "cc"); \ + else if (CODE == '!') fprintf (FILE, "fpcr"); \ else if (GET_CODE (X) == REG) \ { if (REGNO (X) < 16 && (CODE == 'y' || CODE == 'x') && GET_MODE (X) == DFmode) \ fprintf (FILE, "%s:%s", reg_names[REGNO (X)], reg_names[REGNO (X)+1]); \ diff --git a/gcc/config/m68k/news.h b/gcc/config/m68k/news.h index 8257ae5..ef45b9e 100644 --- a/gcc/config/m68k/news.h +++ b/gcc/config/m68k/news.h @@ -260,7 +260,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ else if (CODE == '-') fprintf (FILE, "-(sp)"); \ else if (CODE == '+') fprintf (FILE, "(sp)+"); \ else if (CODE == '@') fprintf (FILE, "(sp)"); \ - else if (CODE == '!') fprintf (FILE, "ccr"); \ + else if (CODE == '!') fprintf (FILE, "fpcr"); \ else if (CODE == '$') {if (TARGET_68040_ONLY) fprintf (FILE, "s");} \ else if (CODE == '&') {if (TARGET_68040_ONLY) fprintf (FILE, "d");} \ else if (GET_CODE (X) == REG) \ |