gas/
authorJan Beulich <jbeulich@novell.com>
Thu, 16 Dec 2004 08:57:23 +0000 (08:57 +0000)
committerJan Beulich <jbeulich@novell.com>
Thu, 16 Dec 2004 08:57:23 +0000 (08:57 +0000)
2004-12-15 Jan Beulich  <jbeulich@novell.com>

* dw2gencfi.c (dot.cfi.startproc): Clear cur_cfa_offset so
'.cfi_startproc simple' doesn't inherit the old value.

gas/ChangeLog
gas/dw2gencfi.c

index 851e4d43ed6fbbbdb2419a43b0594c03758cc235..fe30f9d92777b61dd59e1a9d477b821e11592389 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-15 Jan Beulich  <jbeulich@novell.com>
+
+       * dw2gencfi.c (dot.cfi.startproc): Clear cur_cfa_offset so
+       '.cfi_startproc simple' doesn't inherit the old value.
+
 2004-12-15  Jan Beulich  <jbeulich@novell.com>
 
        * dw2gencfi.c (output_cfi_insn): Adjust DW_CFA_def_cfa_sf generation
index 687815cf60e383ea668bfa8be64f65ae49a3a1e0..c77efbf9a365779fd0ca8a0dac3312a6b88e7bd8 100644 (file)
@@ -607,6 +607,7 @@ dot_cfi_startproc (int ignored ATTRIBUTE_UNUSED)
     }
   demand_empty_rest_of_line ();
 
+  cur_cfa_offset = 0;
   if (!simple)
     tc_cfi_frame_initial_instructions ();
 }