(output_addr_const): Don't insert a leading space

in the CONST_DOUBLE_HIGH != 0 case.

From-SVN: r4684
This commit is contained in:
Richard Stallman 1993-06-17 04:44:04 +00:00
parent 7ae4fbf9e3
commit 4e75433b46
1 changed files with 4 additions and 4 deletions

View File

@ -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));