* dwarf2dbg.c (scale_addr_delta): Correct parameter. Move prototype
authorAlan Modra <amodra@gmail.com>
Wed, 4 Dec 2002 01:03:05 +0000 (01:03 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 4 Dec 2002 01:03:05 +0000 (01:03 +0000)
inside #if.

gas/ChangeLog
gas/dwarf2dbg.c

index 7c4f230..af5c5f7 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-04  Alan Modra  <amodra@bigpond.net.au>
+
+       * dwarf2dbg.c (scale_addr_delta): Correct parameter.  Move prototype
+       inside #if.
+
 2002-12-03  Nick Clifton  <nickc@redhat.com>
 
        * config/tc-ppc.c (ppc_cleanup): Do not set SEC_MERGE flag on
index 846213c..0d5c072 100644 (file)
@@ -174,7 +174,6 @@ static void out_debug_line PARAMS ((segT));
 static void out_debug_aranges PARAMS ((segT, segT));
 static void out_debug_abbrev PARAMS ((segT));
 static void out_debug_info PARAMS ((segT, segT, segT));
-static void scale_addr_delta PARAMS ((int *));
 \f
 /* Find or create an entry for SEG+SUBSEG in ALL_SEGS.  */
 
@@ -598,9 +597,11 @@ out_set_addr (seg, frag, ofs)
 }
 
 #if DWARF2_LINE_MIN_INSN_LENGTH > 1
+static void scale_addr_delta PARAMS ((addressT *));
+
 static void
 scale_addr_delta (addr_delta)
-     int *addr_delta;
+     addressT *addr_delta;
 {
   static int printed_this = 0;
   if (*addr_delta % DWARF2_LINE_MIN_INSN_LENGTH != 0)