test/lib/sun/hotspot/code/NMethod.java
changeset 33045 00f484891bcf
parent 28154 342e86350dc8
child 33569 229c18cf59b4
--- a/test/lib/sun/hotspot/code/NMethod.java	Thu Oct 01 11:52:43 2015 -0700
+++ b/test/lib/sun/hotspot/code/NMethod.java	Thu Oct 08 11:31:14 2015 -1000
@@ -35,14 +35,16 @@
   }
   private NMethod(Object[] obj) {
     super((Object[])obj[0]);
-    assert obj.length == 4;
+    assert obj.length == 5;
     comp_level = (Integer) obj[1];
     insts = (byte[]) obj[2];
     compile_id = (Integer) obj[3];
+    address = (Long) obj[4];
   }
   public final byte[] insts;
   public final int comp_level;
   public final int compile_id;
+  public final long address;
 
   @Override
   public String toString() {
@@ -51,6 +53,7 @@
         + ", insts=" + insts
         + ", comp_level=" + comp_level
         + ", compile_id=" + compile_id
+        + ", address=" + address
         + '}';
   }
 }