gas: allow frag address wrapping in absolute section
authorAlan Modra <amodra@gmail.com>
Thu, 9 Mar 2023 06:05:12 +0000 (16:35 +1030)
committerAlan Modra <amodra@gmail.com>
Thu, 9 Mar 2023 12:17:51 +0000 (22:47 +1030)
commit2dc2dfa7d7a53aae58da4a51a77e9ad996cd2937
tree093a8bc7b4beb6db8d41384895342c49bd08e220
parentf2be4eeb6ce93e4dfab259587bcaf5cb861fc25b
gas: allow frag address wrapping in absolute section

This:
 .struct -1
x:
 .fill 1
y:
results in an internal error in frag_new due to abs_section_offset
wrapping from -1 to 0.  Frags in the absolute section don't do much so
I think we can allow the address wrap.

* frags.c (frag_new): Allow address wrap in absolute section.
gas/frags.c