This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

.file/.loc for m68k targets


This patch add support for dwarf2 .file and .loc in the m68k assembler.

2001-07-17  Andreas Schwab  <schwab@suse.de>

	* config/tc-m68k.c (md_pseudo_table): Add .file and .loc.
	* config/tc-m68k.h (DWARF2_LINE_MIN_INSN_LENGTH): Define.

--- config/tc-m68k.c.~1.27.~	Mon Jul 16 10:47:35 2001
+++ config/tc-m68k.c	Tue Jul 17 14:06:42 2001
@@ -24,6 +24,7 @@
 #include "as.h"
 #include "obstack.h"
 #include "subsegs.h"
+#include "dwarf2dbg.h"
 
 #include "opcode/m68k.h"
 #include "m68k-parse.h"
@@ -557,6 +558,10 @@
 #endif
   {"extend", float_cons, 'x'},
   {"ldouble", float_cons, 'x'},
+
+  /* Dwarf2 support for Gcc.  */
+  {"file", dwarf2_directive_file, 0},
+  {"loc", dwarf2_directive_loc, 0},
 
   /* The following pseudo-ops are supported for MRI compatibility.  */
   {"chip", s_chip, 0},
--- config/tc-m68k.h.~1.9.~	Mon Mar 12 09:51:39 2001
+++ config/tc-m68k.h	Tue Jul 17 14:06:51 2001
@@ -233,3 +233,5 @@
   if (aim==0 && this_state== 4) { /* hard encoded from tc-m68k.c */ \
     aim=this_type->rlx_forward+1; /* Force relaxation into word mode */ \
   }
+
+#define DWARF2_LINE_MIN_INSN_LENGTH 2

-- 
Andreas Schwab                                  "And now for something
SuSE Labs                                        completely different."
Andreas.Schwab@suse.de
SuSE GmbH, Schanzäckerstr. 10, D-90443 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]