diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-10-29 09:43:18 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-10-29 09:43:18 +0000 |
commit | 1b31b9e34a290fcd587142e062588c91b8e289f8 (patch) | |
tree | 9d9b5cbb341ee1ef7cfcb765f40d8283b0a182ce /gas/config | |
parent | ad0f2072a6a647a9c209a8538bd994d7fc7033f5 (diff) | |
download | gdb-1b31b9e34a290fcd587142e062588c91b8e289f8.zip gdb-1b31b9e34a290fcd587142e062588c91b8e289f8.tar.gz gdb-1b31b9e34a290fcd587142e062588c91b8e289f8.tar.bz2 |
2009-10-29 Tristan Gingold <gingold@adacore.com>
* config/tc-mep.c (md_pseudo_table): Remove dwarf2 pseudo
as they are already defined in obj-elf.c
* config/tc-m32c.c (md_pseudo_table): Ditto.
* config/tc-spu.c (md_pseudo_table): Ditto.
* config/tc-avr.c (md_pseudo_table): Ditto.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-avr.c | 3 | ||||
-rw-r--r-- | gas/config/tc-m32c.c | 3 | ||||
-rw-r--r-- | gas/config/tc-mep.c | 2 | ||||
-rw-r--r-- | gas/config/tc-spu.c | 2 |
4 files changed, 0 insertions, 10 deletions
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c index 81a34cb..9d14f64 100644 --- a/gas/config/tc-avr.c +++ b/gas/config/tc-avr.c @@ -241,9 +241,6 @@ static void avr_set_arch (int); const pseudo_typeS md_pseudo_table[] = { {"arch", avr_set_arch, 0}, - {"file", (void (*) (int)) dwarf2_directive_file, 0}, - {"loc", dwarf2_directive_loc, 0}, - {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0}, { NULL, NULL, 0} }; diff --git a/gas/config/tc-m32c.c b/gas/config/tc-m32c.c index 3afca23..cae3302 100644 --- a/gas/config/tc-m32c.c +++ b/gas/config/tc-m32c.c @@ -159,9 +159,6 @@ const pseudo_typeS md_pseudo_table[] = { "bss", s_bss, 0}, { "3byte", cons, 3 }, { "word", cons, 4 }, - {"file", (void (*) (int)) dwarf2_directive_file, 0}, - {"loc", dwarf2_directive_loc, 0}, - {"loc_mark_labels", dwarf2_directive_loc_mark_labels, 0}, { NULL, NULL, 0 } }; diff --git a/gas/config/tc-mep.c b/gas/config/tc-mep.c index 852e2d8..ae2463e 100644 --- a/gas/config/tc-mep.c +++ b/gas/config/tc-mep.c @@ -80,8 +80,6 @@ static void mep_noregerr (int); const pseudo_typeS md_pseudo_table[] = { { "word", cons, 4 }, - { "file", (void (*) (int)) dwarf2_directive_file, 0 }, - { "loc", dwarf2_directive_loc, 0 }, { "vliw", mep_switch_to_vliw_mode, 0 }, { "core", mep_switch_to_core_mode, 0 }, { "vtext", mep_s_vtext, 0 }, diff --git a/gas/config/tc-spu.c b/gas/config/tc-spu.c index 0d94f32..d80c621 100644 --- a/gas/config/tc-spu.c +++ b/gas/config/tc-spu.c @@ -101,8 +101,6 @@ const pseudo_typeS md_pseudo_table[] = /* Likewise for eqv. */ {"eqv", NULL, 0}, {".eqv", s_set, -1}, - {"file", (void (*) (int)) dwarf2_directive_file, 0 }, - {"loc", dwarf2_directive_loc, 0}, {0,0,0} }; |