changeset 18265:f2d1fbba41b6

made HotSpotObjectConstant extend JavaValue
author Doug Simon <doug.simon@oracle.com>
date Wed, 05 Nov 2014 21:27:26 +0100
parents e28aa8468d5e
children ae181ec869c5
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotObjectConstant.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotObjectConstant.java	Wed Nov 05 21:21:35 2014 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotObjectConstant.java	Wed Nov 05 21:27:26 2014 +0100
@@ -28,7 +28,7 @@
  * Represents a constant non-{@code null} object reference, within the compiler and across the
  * compiler/runtime interface.
  */
-public interface HotSpotObjectConstant extends HotSpotConstant, VMConstant {
+public interface HotSpotObjectConstant extends JavaValue, HotSpotConstant, VMConstant {
 
     JavaConstant compress();