mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-11 16:46:14 +08:00
Add support for .file and .loc
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-05-20 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-xstormy16.c: Include dwarf2dbg.h.
|
||||||
|
(md_pseudo_table): Add entries for .loc and .line.
|
||||||
|
|
||||||
2003-05-20 Alan Modra <amodra@bigpond.net.au>
|
2003-05-20 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* dw2gencfi.c (cfi_parse_arg): Only use tc_regname_to_dw2regnum if
|
* dw2gencfi.c (cfi_parse_arg): Only use tc_regname_to_dw2regnum if
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include "opcodes/xstormy16-desc.h"
|
#include "opcodes/xstormy16-desc.h"
|
||||||
#include "opcodes/xstormy16-opc.h"
|
#include "opcodes/xstormy16-opc.h"
|
||||||
#include "cgen.h"
|
#include "cgen.h"
|
||||||
|
#include "dwarf2dbg.h"
|
||||||
|
|
||||||
/* Structure to hold all of the different components describing
|
/* Structure to hold all of the different components describing
|
||||||
an individual instruction. */
|
an individual instruction. */
|
||||||
@ -84,6 +85,8 @@ md_show_usage (stream)
|
|||||||
const pseudo_typeS md_pseudo_table[] =
|
const pseudo_typeS md_pseudo_table[] =
|
||||||
{
|
{
|
||||||
{ "word", cons, 4 },
|
{ "word", cons, 4 },
|
||||||
|
{ "file", (void (*) PARAMS ((int))) dwarf2_directive_file, 0 },
|
||||||
|
{ "loc", dwarf2_directive_loc, 0 },
|
||||||
{ NULL, NULL, 0 }
|
{ NULL, NULL, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user