This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Display user op byte


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0502a2b49c5a5c1f6de203c08e4d45509cd6a9fa

commit 0502a2b49c5a5c1f6de203c08e4d45509cd6a9fa
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Wed Feb 22 20:22:59 2017 +0100

    Display user op byte
    
    binutils/
    2017-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
    
    	* dwarf.c (decode_location_expression): Display also OP.

Diff:
---
 binutils/ChangeLog | 4 ++++
 binutils/dwarf.c   | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 88568b4..18b9d81 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2017-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+	* dwarf.c (decode_location_expression): Display also OP.
+
 2017-02-22  Maciej W. Rozycki  <macro@imgtec.com>
 
 	* readelf.c (process_version_sections) <SHT_GNU_verdef>: Print a
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index 6d879c9..c9755f8 100644
--- a/binutils/dwarf.c
+++ b/binutils/dwarf.c
@@ -1420,9 +1420,9 @@ decode_location_expression (unsigned char * data,
 	default:
 	  if (op >= DW_OP_lo_user
 	      && op <= DW_OP_hi_user)
-	    printf (_("(User defined location op)"));
+	    printf (_("(User defined location op 0x%x)"), op);
 	  else
-	    printf (_("(Unknown location op)"));
+	    printf (_("(Unknown location op 0x%x)"), op);
 	  /* No way to tell where the next op is, so just bail.  */
 	  return need_frame_base;
 	}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]