From: Roland McGrath Date: Sat, 17 Jan 2009 22:48:26 +0000 (-0800) Subject: dwarflint: Handle DW_OP_GNU_*. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d0786262b07d603e2a6e0295f8acf2d39cb9c49;p=thirdparty%2Felfutils.git dwarflint: Handle DW_OP_GNU_*. --- diff --git a/src/ChangeLog b/src/ChangeLog index 844814e7b..0304e7f20 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,7 @@ 2009-01-17 Roland McGrath * expr_opcodes.h: Fix DW_OP_deref entry. + Add DW_OP_GNU_push_tls_address, DW_OP_GNU_uninit. 2009-01-17 Petr Machata diff --git a/src/expr_opcodes.h b/src/expr_opcodes.h index 1aaaa6441..b38f218a9 100644 --- a/src/expr_opcodes.h +++ b/src/expr_opcodes.h @@ -148,5 +148,7 @@ DEF_DW_OP (DW_OP_call2, DW_FORM_data2, 0) DEF_DW_OP (DW_OP_call4, DW_FORM_data4, 0) DEF_DW_OP (DW_OP_call_ref, DW_FORM_addr, 0) DEF_DW_OP (DW_OP_form_tls_address, 0, 0) +DEF_DW_OP (DW_OP_GNU_push_tls_address, 0, 0) DEF_DW_OP (DW_OP_call_frame_cfa, 0, 0) DEF_DW_OP (DW_OP_bit_piece, DW_FORM_udata, DW_FORM_udata) +DEF_DW_OP (DW_OP_GNU_uninit, 0, 0)