aboutsummaryrefslogtreecommitdiff
path: root/gas/dwarf2dbg.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-12-05 00:56:09 +0000
committerNick Clifton <nickc@redhat.com>2000-12-05 00:56:09 +0000
commitbccba5f08caf84add326b6e3541680bf1f5f8746 (patch)
tree27112b17fa82d5c9b9aa9adae45f27ed5f3a2a60 /gas/dwarf2dbg.c
parentbb4e03e55591d8751dc9a669afd57f033c14fc22 (diff)
downloadfsf-binutils-gdb-bccba5f08caf84add326b6e3541680bf1f5f8746.zip
fsf-binutils-gdb-bccba5f08caf84add326b6e3541680bf1f5f8746.tar.gz
fsf-binutils-gdb-bccba5f08caf84add326b6e3541680bf1f5f8746.tar.bz2
Add outputting_stabs_line_debug varaible and D10v code to use it
Diffstat (limited to 'gas/dwarf2dbg.c')
-rw-r--r--gas/dwarf2dbg.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c
index b41d4cb..01ac9d9 100644
--- a/gas/dwarf2dbg.c
+++ b/gas/dwarf2dbg.c
@@ -339,7 +339,7 @@ dwarf2_directive_file (dummy)
return;
}
- if (num >= user_filenum_allocated)
+ if (num >= (int) user_filenum_allocated)
{
unsigned int old = user_filenum_allocated;
@@ -372,7 +372,7 @@ dwarf2_directive_loc (dummy)
as_bad (_("File number less than zero"));
return;
}
- if (filenum >= user_filenum_allocated
+ if (filenum >= (int) user_filenum_allocated
|| user_filenum[filenum] == 0)
{
as_bad (_("Unassigned file number %ld"), (long) filenum);
@@ -558,8 +558,10 @@ size_inc_line_addr (line_delta, addr_delta)
int len = 0;
/* Scale the address delta by the minimum instruction length. */
+#if DWARF2_LINE_MIN_INSN_LENGTH > 1
assert (addr_delta % DWARF2_LINE_MIN_INSN_LENGTH == 0);
addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
+#endif
/* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
We cannot use special opcodes here, since we want the end_sequence
@@ -622,10 +624,11 @@ emit_inc_line_addr (line_delta, addr_delta, p, len)
int need_copy = 0;
char *end = p + len;
+#if DWARF2_LINE_MIN_INSN_LENGTH > 1
/* Scale the address delta by the minimum instruction length. */
assert (addr_delta % DWARF2_LINE_MIN_INSN_LENGTH == 0);
addr_delta /= DWARF2_LINE_MIN_INSN_LENGTH;
-
+#endif
/* INT_MAX is a signal that this is actually a DW_LNE_end_sequence.
We cannot use special opcodes here, since we want the end_sequence
to emit the matrix entry. */
@@ -796,7 +799,7 @@ dwarf2dbg_convert_frag (frag)
/* fr_var carries the max_chars that we created the fragment with.
fr_subtype carries the current expected length. We must, of
course, have allocated enough memory earlier. */
- assert (frag->fr_var >= frag->fr_subtype);
+ assert (frag->fr_var >= (int) frag->fr_subtype);
emit_inc_line_addr (frag->fr_offset, addr_diff,
frag->fr_literal + frag->fr_fix, frag->fr_subtype);