diff options
author | Bob Wilson <bob.wilson@acm.org> | 2007-06-11 16:53:08 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2007-06-11 16:53:08 +0000 |
commit | 99ded152a588dacb682f17c5a7f1c2f954eaa086 (patch) | |
tree | b2c249e2fb00ae7ca0b5d4cef79de0b0a7f90582 /ld | |
parent | a87b0a599b3ecf2ba2c01c97a2258d8431e9bf94 (diff) | |
download | gdb-99ded152a588dacb682f17c5a7f1c2f954eaa086.zip gdb-99ded152a588dacb682f17c5a7f1c2f954eaa086.tar.gz gdb-99ded152a588dacb682f17c5a7f1c2f954eaa086.tar.bz2 |
bfd/
* elf32-xtensa.c (extend_ebb_bounds_forward): Use renamed
XTENSA_PROP_NO_TRANSFORM flag instead of XTENSA_PROP_INSN_NO_TRANSFORM.
(extend_ebb_bounds_backward, compute_text_actions): Likewise.
(compute_ebb_proposed_actions, coalesce_shared_literal): Likewise.
(xtensa_get_property_predef_flags): Likewise.
(compute_removed_literals): Pass new arguments to is_removable_literal.
(is_removable_literal): Add sec, prop_table and ptblsize arguments.
Do not remove literal if the NO_TRANSFORM property flag is set.
gas/
* config/tc-xtensa.c (XTENSA_PROP_INSN_NO_TRANSFORM): Renamed to...
(XTENSA_PROP_NO_TRANSFORM): ...this.
(frag_flags_struct): Move is_no_transform out of the insn sub-struct.
(xtensa_mark_frags_for_org): New.
(xtensa_handle_align): Set RELAX_ORG frag subtype for rs_org.
(xtensa_post_relax_hook): Call xtensa_mark_frags_for_org.
(get_frag_property_flags): Adjust reference to is_no_transform flag.
(xtensa_frag_flags_combinable): Likewise.
(frag_flags_to_number): Likewise. Use XTENSA_PROP_NO_TRANSFORM.
* config/tc-xtensa.h (xtensa_relax_statesE): Add RELAX_ORG.
include/elf/
* xtensa.h (XTENSA_PROP_INSN_NO_TRANSFORM): Renamed to...
(XTENSA_PROP_NO_TRANSFORM): ...this.
ld/
* emultempl/xtensaelf.em (replace_insn_sec_with_prop_sec): Use renamed
XTENSA_PROP_NO_TRANSFORM flag instead of XTENSA_PROP_INSN_NO_TRANSFORM.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/emultempl/xtensaelf.em | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 17cec65..85f0db4 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2007-06-11 Sterling Augustine <sterling@tensilica.com> + Bob Wilson <bob.wilson@acm.org> + + * emultempl/xtensaelf.em (replace_insn_sec_with_prop_sec): Use renamed + XTENSA_PROP_NO_TRANSFORM flag instead of XTENSA_PROP_INSN_NO_TRANSFORM. + 2007-06-01 Noah Misch <noah@cs.caltech.edu> Alan Modra <amodra@bigpond.net.au> diff --git a/ld/emultempl/xtensaelf.em b/ld/emultempl/xtensaelf.em index bed39ba..e303e59 100644 --- a/ld/emultempl/xtensaelf.em +++ b/ld/emultempl/xtensaelf.em @@ -194,7 +194,7 @@ replace_insn_sec_with_prop_sec (bfd *abfd, for (entry = 0; entry < entry_count; ++entry) { unsigned value; - unsigned flags = (XTENSA_PROP_INSN | XTENSA_PROP_INSN_NO_TRANSFORM + unsigned flags = (XTENSA_PROP_INSN | XTENSA_PROP_NO_TRANSFORM | XTENSA_PROP_INSN_NO_REORDER); value = bfd_get_32 (abfd, insn_contents + entry * 8 + 0); bfd_put_32 (abfd, value, prop_contents + entry * 12 + 0); |