From: Richard Henderson Date: Fri, 17 Nov 2000 18:15:53 +0000 (+0000) Subject: * config/tc-i386.c (md_pseudo_table): Add .file and .loc. X-Git-Tag: newlib-1_9_0~526 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=316e2c057847248a59e24b9e5ebf51211ef35033;p=external%2Fbinutils.git * config/tc-i386.c (md_pseudo_table): Add .file and .loc. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 8ac23d5..ce145ee 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2000-11-17 Richard Henderson + * config/tc-i386.c (md_pseudo_table): Add .file and .loc. + +2000-11-17 Richard Henderson + * dwarf2dbg.c (dwarf2_gen_line_info): Early out for no line number. * config/obj-elf.h (ECOFF_DEBUGGING) [TC_ALPHA]: Adjust for tri-state definition of alpha_flag_mdebug. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index fe5ccf8..737acd9 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -28,6 +28,7 @@ #include "as.h" #include "subsegs.h" +#include "dwarf2dbg.h" #include "opcode/i386.h" #ifndef REGISTER_WARNINGS @@ -683,6 +684,8 @@ const pseudo_typeS md_pseudo_table[] = {"code32", set_16bit_code_flag, 0}, {"intel_syntax", set_intel_syntax, 1}, {"att_syntax", set_intel_syntax, 0}, + {"file", dwarf2_directive_file, 0}, + {"loc", dwarf2_directive_loc, 0}, {0, 0, 0} };