* macro.c (macro_expand_body): Don't prepend macro number with zeroes.
authorCatherine Moore <clm@redhat.com>
Mon, 1 May 2000 14:01:06 +0000 (14:01 +0000)
committerCatherine Moore <clm@redhat.com>
Mon, 1 May 2000 14:01:06 +0000 (14:01 +0000)
gas/ChangeLog
gas/macro.c

index 4b73457..d8a9dcd 100644 (file)
@@ -1,3 +1,7 @@
+Mon May  1 08:54:23 2000  Catherine Moore  <clm@cygnus.com>
+
+       * macro.c (macro_expand_body): Don't prepend macro number with zeroes.
+
 Mon May  1 14:19:39 2000  Denis Chertykov  <denisc@overta.ru>
 
        * config/tc-avr.c: ATTRIBUTE_UNUSED added to the necessary places.
index 12a757e..df01bc5 100644 (file)
@@ -700,7 +700,7 @@ macro_expand_body (in, out, formals, formal_hash, comment_char, locals)
 
              char buffer[10];
              src++;
-             sprintf (buffer, "%05d", macro_number);
+             sprintf (buffer, "%d", macro_number);
              sb_add_string (out, buffer);
            }
          else if (in->ptr[src] == '&')