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] Fix snafu in aarch64 opcodes debugging statement.


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

commit 957f6b39cab6cac0e4c54e650c7f75109544ac1d
Author: Tamar Christina <tamar.christina@arm.com>
Date:   Mon Apr 24 11:55:44 2017 +0100

    Fix snafu in aarch64 opcodes debugging statement.
    
    	* aarch64-opc.c (aarch64_logical_immediate_p): Update DEBUG_TRACE
    	arguments.

Diff:
---
 opcodes/ChangeLog     | 5 +++++
 opcodes/aarch64-opc.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 53ebe54..df765e4 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2017-04-24  Tamar Christina  <tamar.christina@arm.com>
+
+	* aarch64-opc.c (aarch64_logical_immediate_p): Update DEBUG_TRACE
+	arguments.
+
 2017-04-22  Alexander Fedotov  <alfedotov@gmail.com>
 	    Alan Modra  <amodra@gmail.com>
 
diff --git a/opcodes/aarch64-opc.c b/opcodes/aarch64-opc.c
index cc99c10..a52ea70 100644
--- a/opcodes/aarch64-opc.c
+++ b/opcodes/aarch64-opc.c
@@ -1204,8 +1204,8 @@ aarch64_logical_immediate_p (uint64_t value, int esize, aarch64_insn *encoding)
   uint64_t upper;
   int i;
 
-  DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), is32: %d", value,
-	       value, is32);
+  DEBUG_TRACE ("enter with 0x%" PRIx64 "(%" PRIi64 "), esize: %d", value,
+	       value, esize);
 
   if (initialized == FALSE)
     {


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