diff options
author | Richard Stallman <rms@gnu.org> | 1993-06-17 04:44:04 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-06-17 04:44:04 +0000 |
commit | 4e75433b46caf9aeed38c79f54c336619b8dfb0f (patch) | |
tree | b5cdc1830a334c61e07825b00394eaa139a00d4e /gcc | |
parent | 7ae4fbf9e3e1103d3bca610335d8915ca2e00484 (diff) | |
download | gcc-4e75433b46caf9aeed38c79f54c336619b8dfb0f.zip gcc-4e75433b46caf9aeed38c79f54c336619b8dfb0f.tar.gz gcc-4e75433b46caf9aeed38c79f54c336619b8dfb0f.tar.bz2 |
(output_addr_const): Don't insert a leading space
in the CONST_DOUBLE_HIGH != 0 case.
From-SVN: r4684
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/final.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/final.c b/gcc/final.c index 67a30fa..9773fa8 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2315,15 +2315,15 @@ output_addr_const (file, x) fprintf (file, #if HOST_BITS_PER_WIDE_INT == 64 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT - " 0x%lx%016lx", + "0x%lx%016lx", #else - " 0x%x%016x", + "0x%x%016x", #endif #else #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT - " 0x%lx%08lx", + "0x%lx%08lx", #else - " 0x%x%08x", + "0x%x%08x", #endif #endif CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x)); |