diff options
author | Roland McGrath <roland@redhat.com> | 2009-01-22 02:26:24 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-01-22 02:26:24 -0800 |
commit | afdd51e683f37412c1ce4eb9dddacd5a924f98e4 (patch) | |
tree | 842f882b04a949c263a72e812995df745f4364b7 /libdw | |
parent | 1ea4fdca6f9b2be5a6ad02c18493145d2b669455 (diff) | |
download | elfutils-afdd51e683f37412c1ce4eb9dddacd5a924f98e4.tar.gz |
dwarf.h: Add DW_OP_GNU_encoded_addr.
Diffstat (limited to 'libdw')
-rw-r--r-- | libdw/ChangeLog | 4 | ||||
-rw-r--r-- | libdw/dwarf.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libdw/ChangeLog b/libdw/ChangeLog index fe797822..d55d2d1e 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,7 @@ +2009-01-22 Roland McGrath <roland@redhat.com> + + * dwarf.h: Add DW_OP_GNU_encoded_addr. + 2009-01-21 Roland McGrath <roland@redhat.com> * Makefile.am (CLEANFILES): Renamed to ... diff --git a/libdw/dwarf.h b/libdw/dwarf.h index cce46304..7048d427 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -435,6 +435,7 @@ enum /* GNU extensions. */ DW_OP_GNU_push_tls_address = 0xe0, DW_OP_GNU_uninit = 0xf0, + DW_OP_GNU_encoded_addr = 0xf1, DW_OP_lo_user = 0xe0, /* Implementation-defined range start. */ DW_OP_hi_user = 0xff /* Implementation-defined range end. */ |