Browse Source

* write.c (chain_frchains_together_1): Assert that this function

never returns a pointer to the auto variable `dummy'.
gdb_6_6-branch
Ben Elliston 20 years ago
parent
commit
033cd5fdcd
  1. 3
      gas/ChangeLog
  2. 1
      gas/write.c

3
gas/ChangeLog

@ -3,6 +3,9 @@
* dw2gencfi.c (cfi_add_CFA_offset):
Assert DWARF2_CIE_DATA_ALIGNMENT is non-zero.
* write.c (chain_frchains_together_1): Assert that this function
never returns a pointer to the auto variable `dummy'.
2006-10-25 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
Yukishige Shibata <shibata@rd.scei.sony.co.jp>
Nobuhisa Fujinami <fnami@rd.scei.sony.co.jp>

1
gas/write.c

@ -394,6 +394,7 @@ chain_frchains_together_1 (segT section, struct frchain *frchp)
}
}
assert (prev_frag->fr_type != 0);
assert (prev_frag != &dummy);
prev_frag->fr_next = 0;
return prev_frag;
}

Loading…
Cancel
Save