Thinko in disassembler patch

Andrew Haley aph at redhat.com
Mon Jan 23 02:31:51 PST 2012


FYI.

changeset:   2795:09346b173848
tag:         tip
user:        aph
date:        Fri Jan 20 14:04:34 2012 -0500
summary:     Return NULL to fix disassembler.

diff -r 9d8f2bd49124 -r 09346b173848 ChangeLog
--- a/ChangeLog	Fri Jan 20 10:51:50 2012 -0500
+++ b/ChangeLog	Fri Jan 20 14:04:34 2012 -0500
@@ -1,3 +1,8 @@
+2012-01-20  Andrew Haley  <aph at redhat.com>
+
+	* arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp (print_address):
+	Return NULL;
+
 2012-01-20  Andrew Haley  <aph at redhat.com>

 	* openjdk/hotspot/src/cpu/zero/vm/thumb2.cpp
diff -r 9d8f2bd49124 -r 09346b173848 arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp
--- a/arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp	Fri Jan 20 10:51:50 2012 -0500
+++ b/arm_port/hotspot/src/cpu/zero/vm/thumb2.cpp	Fri Jan 20 14:04:34 2012 -0500
@@ -949,6 +949,7 @@
 static void *print_address(void *, const char *tag, void *data) {
   if (strcmp(tag, "insn") == 0)
     printf("0x%08x:\t", data);
+  return NULL;
 }
 #endif





More information about the distro-pkg-dev mailing list