diff graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedPrimitiveType.java @ 11952:c0807f5fdca5

added ResolvedJavaType.getClassInititalizer()
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Oct 2013 11:55:46 +0200
parents 7cca436d600b
children 606959535fd4
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedPrimitiveType.java	Thu Oct 10 03:23:40 2013 +0200
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotResolvedPrimitiveType.java	Thu Oct 10 11:55:46 2013 +0200
@@ -227,6 +227,11 @@
     }
 
     @Override
+    public ResolvedJavaMethod getClassInitializer() {
+        return null;
+    }
+
+    @Override
     public Constant newArray(int length) {
         return Constant.forObject(Array.newInstance(javaMirror, length));
     }