src/hotspot/share/c1/c1_LIRGenerator.cpp
changeset 47580 96392e113a0a
parent 47216 71c04702a3d5
child 49164 7e958a8ebcd3
child 55767 8e22715afabc
--- a/src/hotspot/share/c1/c1_LIRGenerator.cpp	Fri Sep 29 10:44:58 2017 +0200
+++ b/src/hotspot/share/c1/c1_LIRGenerator.cpp	Tue Oct 03 16:42:04 2017 -0400
@@ -1304,7 +1304,9 @@
   // FIXME T_ADDRESS should actually be T_METADATA but it can't because the
   // meaning of these two is mixed up (see JDK-8026837).
   __ move(new LIR_Address(rcvr.result(), oopDesc::klass_offset_in_bytes(), T_ADDRESS), temp, info);
-  __ move_wide(new LIR_Address(temp, in_bytes(Klass::java_mirror_offset()), T_OBJECT), result);
+  __ move_wide(new LIR_Address(temp, in_bytes(Klass::java_mirror_offset()), T_ADDRESS), result);
+  // mirror = ((OopHandle)mirror)->resolve();
+  __ move_wide(new LIR_Address(result, T_OBJECT), result);
 }
 
 // java.lang.Class::isPrimitive()