Commit 25dd13ec by James E. Wilson Committed by Jim Wilson

Emit correct debug info for 64-bit signed enums on 64-bit host.

	* dwarf2out.c (size_of_die, case dw_val_class_const): Use
	size_of_sleb128.
	(value_format, case dw_val_class_const): Use sdata format.
	(output_die): Call output_sleb128.

From-SVN: r34462
parent 6c820cf2
2000-06-08 James E. Wilson <wilson@bletchleypark.cygnus.com>
* dwarf2out.c (size_of_die, case dw_val_class_const): Use
size_of_sleb128.
(value_format, case dw_val_class_const): Use sdata format.
(output_die): Call output_sleb128.
2000-06-08 Mark Mitchell <mark@codesourcery.com>
* invoke.texi: Remove documentation for -fsquangle and
......
......@@ -4644,7 +4644,7 @@ size_of_die (die)
}
break;
case dw_val_class_const:
size += 4;
size += size_of_sleb128 (AT_int (a));
break;
case dw_val_class_unsigned_const:
size += constant_size (AT_unsigned (a));
......@@ -4801,7 +4801,7 @@ value_format (a)
abort ();
}
case dw_val_class_const:
return DW_FORM_data4;
return DW_FORM_sdata;
case dw_val_class_unsigned_const:
switch (constant_size (AT_unsigned (a)))
{
......@@ -5089,7 +5089,10 @@ output_die (die)
break;
case dw_val_class_const:
ASM_OUTPUT_DWARF_DATA4 (asm_out_file, AT_int (a));
/* ??? It would be slightly more efficient to use a scheme like is
used for unsigned constants below, but gdb 4.x does not sign
extend. Gdb 5.x does sign extend. */
output_sleb128 (AT_int (a));
break;
case dw_val_class_unsigned_const:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment