diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-10-27 15:39:27 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-10-27 15:39:27 +0000 |
commit | 66b4202f3069768b4a1c202422444f6f524b5838 (patch) | |
tree | db3831634ce94bf714a04c51f3abe6f807b38768 /gas/config/tc-avr.c | |
parent | 5fdcb63c89bda2332397f4e70e9394fe61bad10c (diff) | |
download | gdb-66b4202f3069768b4a1c202422444f6f524b5838.zip gdb-66b4202f3069768b4a1c202422444f6f524b5838.tar.gz gdb-66b4202f3069768b4a1c202422444f6f524b5838.tar.bz2 |
2009-10-27 Tristan Gingold <gingold@adacore.com>
* config/tc-avr.c (md_pseudo_table): Add dwarf2 debug pseudo.
* config/tc-avr.h (DWARF2_LINE_MIN_INSN_LENGTH): Define.
(DWARF2_ADDR_SIZE): Define.
Diffstat (limited to 'gas/config/tc-avr.c')
-rw-r--r-- | gas/config/tc-avr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c index 9d14f64..81a34cb 100644 --- a/gas/config/tc-avr.c +++ b/gas/config/tc-avr.c @@ -241,6 +241,9 @@ 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} }; |