2002-10-01 Elena Zannoni <ezannoni@redhat.com>
* dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and GNU operators.
This commit is contained in:
parent
a581b5c30e
commit
ed348accac
2 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-10-01 Elena Zannoni <ezannoni@redhat.com>
|
||||||
|
|
||||||
|
* dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
|
||||||
|
GNU operators.
|
||||||
|
|
||||||
2002-10-01 Andrew Cagney <ac131313@redhat.com>
|
2002-10-01 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
* NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
|
* NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
|
||||||
|
|
|
@ -5961,6 +5961,18 @@ dwarf_stack_op_name (register unsigned op)
|
||||||
return "DW_OP_xderef_size";
|
return "DW_OP_xderef_size";
|
||||||
case DW_OP_nop:
|
case DW_OP_nop:
|
||||||
return "DW_OP_nop";
|
return "DW_OP_nop";
|
||||||
|
/* DWARF 3 extensions. */
|
||||||
|
case DW_OP_push_object_address:
|
||||||
|
return "DW_OP_push_object_address";
|
||||||
|
case DW_OP_call2:
|
||||||
|
return "DW_OP_call2";
|
||||||
|
case DW_OP_call4:
|
||||||
|
return "DW_OP_call4";
|
||||||
|
case DW_OP_call_ref:
|
||||||
|
return "DW_OP_call_ref";
|
||||||
|
/* GNU extensions. */
|
||||||
|
case DW_OP_GNU_push_tls_address:
|
||||||
|
return "DW_OP_GNU_push_tls_address";
|
||||||
default:
|
default:
|
||||||
return "OP_<unknown>";
|
return "OP_<unknown>";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue