diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 19:54:04 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 19:54:04 +0000 |
commit | b466d9c8e0580d94fc8c28a385875470835d8bda (patch) | |
tree | 7a361719df3249fd188a83c4ba35e80b285c0b0d /gcc/config/i386/ptx4-i.h | |
parent | 93221b104e65d697e910187d5297cdf5577238db (diff) | |
download | gcc-b466d9c8e0580d94fc8c28a385875470835d8bda.tar.gz |
* config/i386/att.h (ASM_SHORT, ASM_LONG): Add trailing \t.
(ASM_DOUBLE): Remove.
* config/i386/bsd.h, config/i386/sco5.h: Likewise.
* config/i386/sun386.h: Likewise.
* config/i386/i386.h (UNALIGNED_SHORT_ASM_OP): New.
(UNALIGNED_INT_ASM_OP, INT_ASM_OP): New.
* config/i386/cygwin.h (INT_ASM_OP): Remove.
* config/i386/freebsd-aout.h, config/i386/i386-aout.h: Likewise.
* config/i386/i386-coff.h, config/i386/i386-interix.h: Likewise.
* config/i386/netbsd.h, config/i386/openbsd.h: Likewise.
* config/i386/cygwin.h: Adjust uses of ASM_LONG for trailing \t.
* config/i386/djgpp.h, config/i386/i386.h: Likewise.
* config/i386/i386elf.h, config/i386/ptx4-i.h: Likewise.
* config/i386/sco5.h, config/i386/svr3gas.h: Likewise.
* config/i386/sysv4.h, config/i386/vsta.h: Likewise.
* config/i386/win32.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42355 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/ptx4-i.h')
-rw-r--r-- | gcc/config/i386/ptx4-i.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/config/i386/ptx4-i.h b/gcc/config/i386/ptx4-i.h index 9cee54cb951..735408ebf8f 100644 --- a/gcc/config/i386/ptx4-i.h +++ b/gcc/config/i386/ptx4-i.h @@ -53,9 +53,9 @@ Boston, MA 02111-1307, USA. */ do { long value; \ REAL_VALUE_TO_TARGET_SINGLE ((VALUE), value); \ if (sizeof (int) == sizeof (long)) \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value); \ else \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value); \ } while (0) /* This is how to output assembly code to define a `double' constant. @@ -69,13 +69,13 @@ do { long value[2]; \ REAL_VALUE_TO_TARGET_DOUBLE ((VALUE), value); \ if (sizeof (int) == sizeof (long)) \ { \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value[0]); \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value[1]); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value[0]); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value[1]); \ } \ else \ { \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value[0]); \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value[1]); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value[0]); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value[1]); \ } \ } while (0) @@ -86,15 +86,15 @@ do { long value[3]; \ REAL_VALUE_TO_TARGET_LONG_DOUBLE ((VALUE), value); \ if (sizeof (int) == sizeof (long)) \ { \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value[0]); \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value[1]); \ - fprintf((FILE), "%s\t0x%x\n", ASM_LONG, value[2]); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value[0]); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value[1]); \ + fprintf((FILE), "%s0x%x\n", ASM_LONG, value[2]); \ } \ else \ { \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value[0]); \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value[1]); \ - fprintf((FILE), "%s\t0x%lx\n", ASM_LONG, value[2]); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value[0]); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value[1]); \ + fprintf((FILE), "%s0x%lx\n", ASM_LONG, value[2]); \ } \ } while (0) |