diff options
Diffstat (limited to 'gcc/config/m68k/sun3.h')
-rw-r--r-- | gcc/config/m68k/sun3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/sun3.h b/gcc/config/m68k/sun3.h index 3dcb85a..1d64599 100644 --- a/gcc/config/m68k/sun3.h +++ b/gcc/config/m68k/sun3.h @@ -208,7 +208,7 @@ Boston, MA 02111-1307, USA. */ } \ else \ { char dstr[30]; \ - REAL_VALUE_TO_DECIMAL ((VALUE), dstr, 9); \ + real_to_decimal (dstr, &(VALUE), sizeof (dstr), 9, 0); \ asm_fprintf (FILE, "%I0r%s", dstr); \ } \ } while (0) @@ -228,7 +228,7 @@ Boston, MA 02111-1307, USA. */ } \ else \ { char dstr[30]; \ - REAL_VALUE_TO_DECIMAL ((VALUE), dstr, -1); \ + real_to_decimal (dstr, &(VALUE), sizeof (dstr), 0, 1); \ asm_fprintf (FILE, "%I0r%s", dstr); \ } \ } while (0) |