diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-10-17 18:17:08 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-10-17 18:17:08 +0000 |
commit | 7c430684d0241f2ea22e0aaba1cfb9c1345168ad (patch) | |
tree | e18135360af6e1033cfeeb5a77449ac3a2e77208 /gas/config/xtensa-istack.h | |
parent | 2e803135a9eaaa78e3ee9456fbbdf934ec5f8018 (diff) | |
download | binutils-gdb-7c430684d0241f2ea22e0aaba1cfb9c1345168ad.tar.gz |
* config/xtensa-istack.h (TInsn): Replace dwarf2_line_info with an
unsigned line number. Do not include "dwarf2dbg.h".
* config/tc-xtensa.c (md_pseudo_table): Remove entry for "loc".
(xtensa_dwarf2_directive_loc, xtensa_dwarf2_emit_insn): Delete.
(xg_build_to_insn, xg_build_token_insn): Update TInsn uses.
(md_assemble): Use as_where instead of dwarf2_where.
(xg_assemble_vliw_tokens): Use unsigned line numbers instead of
dwarf2_line_infos. Change to call new_logical_line followed by
dwarf2_emit_insn.
Diffstat (limited to 'gas/config/xtensa-istack.h')
-rw-r--r-- | gas/config/xtensa-istack.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/config/xtensa-istack.h b/gas/config/xtensa-istack.h index ac5b13f4a4e..c7eaad7e275 100644 --- a/gas/config/xtensa-istack.h +++ b/gas/config/xtensa-istack.h @@ -21,7 +21,6 @@ #ifndef XTENSA_ISTACK_H #define XTENSA_ISTACK_H -#include "dwarf2dbg.h" #include "xtensa-isa.h" #define MAX_ISTACK 12 @@ -47,7 +46,7 @@ typedef struct tinsn_struct bfd_boolean keep_wide; int ntok; expressionS tok[MAX_INSN_ARGS]; - struct dwarf2_line_info loc; + unsigned linenum; struct fixP *fixup; |