From 431a861d74e81ba9a1358f20c85d43a9f424067f Mon Sep 17 00:00:00 2001 From: Igor Veresov Date: Tue, 29 Mar 2011 22:25:17 -0700 Subject: [PATCH] 7026307: DEBUG MESSAGE: broken null klass on amd64 Correct typo introduces in 7020521 Reviewed-by: never, kvn --- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp b/hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp index 07d87d34142..c16f642631c 100644 --- a/hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp +++ b/hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp @@ -2449,8 +2449,8 @@ class StubGenerator: public StubCodeGenerator { // address generate_generic_copy(const char *name, address byte_copy_entry, address short_copy_entry, - address int_copy_entry, address long_copy_entry, - address oop_copy_entry, address checkcast_copy_entry) { + address int_copy_entry, address oop_copy_entry, + address long_copy_entry, address checkcast_copy_entry) { Label L_failed, L_failed_0, L_objArray; Label L_copy_bytes, L_copy_shorts, L_copy_ints, L_copy_longs;