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]

A patch for dwarf2dbg.c


bfd_vma is only available for bfd assemblers. Use addressT instead.

-- 
H.J. Lu (hjl@valinux.com)
---
2000-11-18  H.J. Lu  (hjl@gnu.org)

	* dwarf2dbg.c (dwarf2_generate_asm_lineno): Use addressT
	instead of bfd_vma for non-bfd assemblers.

Index: dwarf2dbg.c
===================================================================
RCS file: /work/cvs/gnu/binutils/gas/dwarf2dbg.c,v
retrieving revision 1.12
diff -u -p -r1.12 dwarf2dbg.c
--- dwarf2dbg.c	2000/11/08 00:33:58	1.12
+++ dwarf2dbg.c	2000/11/08 23:48:01
@@ -780,7 +780,7 @@ void
 dwarf2_generate_asm_lineno (size)
      int size;
 {
-  bfd_vma addr;
+  addressT addr;
   static struct dwarf2_line_info debug_line;
 
   /* First update the notion of the current source line.  */

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