diff options
author | Stephen L Moshier <moshier@gnu.org> | 1995-02-07 04:46:41 +0000 |
---|---|---|
committer | Stephen L Moshier <moshier@gnu.org> | 1995-02-07 04:46:41 +0000 |
commit | e29eead5ce4e069e5ae22d369eda4e295c833cea (patch) | |
tree | 87f188d52c11a961d1ced0aa8601a2f2a93fde30 | |
parent | ca188f167980504318441867688990b3cdec76fb (diff) | |
download | gcc-e29eead5ce4e069e5ae22d369eda4e295c833cea.zip gcc-e29eead5ce4e069e5ae22d369eda4e295c833cea.tar.gz gcc-e29eead5ce4e069e5ae22d369eda4e295c833cea.tar.bz2 |
(ASM_OUTPUT_FLOAT, ASM_OUTPUT_DOUBLE): Remove tests for host == target
format and endianness.
From-SVN: r8886
-rw-r--r-- | gcc/config/sparc/sysv4.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index 7a96b31..96035f3 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -191,10 +191,6 @@ do { \ fprintf (FILE, ".section\t\"%s\",#alloc,#write\n", (NAME)); \ } while (0) -/* If the host and target formats match, output the floats as hex. */ -#if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT -#if defined (HOST_WORDS_BIG_ENDIAN) == WORDS_BIG_ENDIAN - /* This is how to output assembly code to define a `float' constant. We always have to use a .long pseudo-op to do this because the native SVR4 ELF assembler is buggy and it generates incorrect values when we @@ -220,9 +216,6 @@ do { long value[2]; \ fprintf((FILE), "\t.long\t0x%x\n", value[1]); \ } while (0) -#endif /* word order matches */ -#endif /* HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT */ - /* This is how to output an assembler line defining a `long double' constant. */ |