test/lib/sun/hotspot/code/NMethod.java
changeset 33569 229c18cf59b4
parent 33045 00f484891bcf
child 41533 64e1caddf380
--- a/test/lib/sun/hotspot/code/NMethod.java	Fri Oct 30 12:03:08 2015 -0700
+++ b/test/lib/sun/hotspot/code/NMethod.java	Wed Nov 04 07:01:03 2015 -1000
@@ -39,12 +39,12 @@
     comp_level = (Integer) obj[1];
     insts = (byte[]) obj[2];
     compile_id = (Integer) obj[3];
-    address = (Long) obj[4];
+    entry_point = (Long) obj[4];
   }
   public final byte[] insts;
   public final int comp_level;
   public final int compile_id;
-  public final long address;
+  public final long entry_point;
 
   @Override
   public String toString() {
@@ -53,7 +53,7 @@
         + ", insts=" + insts
         + ", comp_level=" + comp_level
         + ", compile_id=" + compile_id
-        + ", address=" + address
+        + ", entry_point=" + entry_point
         + '}';
   }
 }