• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revisión0502a2b49c5a5c1f6de203c08e4d45509cd6a9fa (tree)
Tiempo2017-02-23 04:22:59
AutorJan Kratochvil <jan.kratochvil@redh...>
CommiterJan Kratochvil

Log Message

Display user op byte

binutils/
2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>

* dwarf.c (decode_location_expression): Display also OP.

Cambiar Resumen

Diferencia incremental

--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
1+2017-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2+
3+ * dwarf.c (decode_location_expression): Display also OP.
4+
15 2017-02-22 Maciej W. Rozycki <macro@imgtec.com>
26
37 * readelf.c (process_version_sections) <SHT_GNU_verdef>: Print a
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -1420,9 +1420,9 @@ decode_location_expression (unsigned char * data,
14201420 default:
14211421 if (op >= DW_OP_lo_user
14221422 && op <= DW_OP_hi_user)
1423- printf (_("(User defined location op)"));
1423+ printf (_("(User defined location op 0x%x)"), op);
14241424 else
1425- printf (_("(Unknown location op)"));
1425+ printf (_("(Unknown location op 0x%x)"), op);
14261426 /* No way to tell where the next op is, so just bail. */
14271427 return need_frame_base;
14281428 }