diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 09:03:23 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 09:03:23 -0500 |
commit | 5d49bd0cf28aa922b54efce5e1ecfcebc971d457 (patch) | |
tree | c39421091a2b31a9f7572632e9fe19f0c43b7c85 /gcc/config/ns32k | |
parent | 0dbb682da41dc004f6fe51df9e72503258752d6f (diff) | |
download | gcc-5d49bd0cf28aa922b54efce5e1ecfcebc971d457.zip gcc-5d49bd0cf28aa922b54efce5e1ecfcebc971d457.tar.gz gcc-5d49bd0cf28aa922b54efce5e1ecfcebc971d457.tar.bz2 |
(ASM_OUTPUT_ADDR_DIFF_ELT): Use .long, not .double.
From-SVN: r6282
Diffstat (limited to 'gcc/config/ns32k')
-rw-r--r-- | gcc/config/ns32k/ns32k.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/ns32k/ns32k.h b/gcc/config/ns32k/ns32k.h index 273d589..a0730a2 100644 --- a/gcc/config/ns32k/ns32k.h +++ b/gcc/config/ns32k/ns32k.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler. NS32000 version. - Copyright (C) 1988 Free Software Foundation, Inc. + Copyright (C) 1988, 1993 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@mcc.com) This file is part of GNU CC. @@ -1310,7 +1310,7 @@ do { \ /* This is how to output an element of a case-vector that is relative. */ /* ** Notice that the second element is LI format! */ #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \ - fprintf (FILE, "\t.double L%d-LI%d\n", VALUE, REL) + fprintf (FILE, "\t.long L%d-LI%d\n", VALUE, REL) /* This is how to output an assembler line that says to advance the location counter |