OSDN Git Service

(output_addr_const): Don't insert a leading space
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 17 Jun 1993 04:44:04 +0000 (04:44 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 17 Jun 1993 04:44:04 +0000 (04:44 +0000)
in the CONST_DOUBLE_HIGH != 0 case.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4684 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/final.c

index 67a30fa..9773fa8 100644 (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));