OSDN Git Service

* dwarf2dbg.c (dwarf2_emit_label): Use dwarf2_consume_line_info.
authorbwilson <bwilson>
Mon, 19 Nov 2007 19:33:23 +0000 (19:33 +0000)
committerbwilson <bwilson>
Mon, 19 Nov 2007 19:33:23 +0000 (19:33 +0000)
gas/ChangeLog
gas/dwarf2dbg.c

index 835b56f..cbdaa3d 100644 (file)
@@ -1,5 +1,9 @@
 2007-11-19  Bob Wilson  <bob.wilson@acm.org>
        
+       * dwarf2dbg.c (dwarf2_emit_label): Use dwarf2_consume_line_info.
+       
+2007-11-19  Bob Wilson  <bob.wilson@acm.org>
+       
        * dwarf2dbg.c (dwarf2_consume_line_info): New.
        (dwarf2_emit_insn): Use it here.
        (dwarf2_directive_loc): Fix check for consecutive .loc directives
index 97a60c7..96da797 100644 (file)
@@ -419,17 +419,11 @@ dwarf2_emit_label (symbolS *label)
   if (debug_type == DEBUG_DWARF2)
     dwarf2_where (&loc);
   else
-    {
-      loc = current;
-      loc_directive_seen = FALSE;
-    }
+    loc = current;
 
   loc.flags |= DWARF2_FLAG_BASIC_BLOCK;
 
-  current.flags &= ~(DWARF2_FLAG_BASIC_BLOCK
-                    | DWARF2_FLAG_PROLOGUE_END
-                    | DWARF2_FLAG_EPILOGUE_BEGIN);
-
+  dwarf2_consume_line_info ();
   dwarf2_gen_line_info_1 (label, &loc);
 }