changeset 22442:af6739c6fea5

Interval: make spillSlot and setSpillSlot visible.
author Josef Eisl <josef.eisl@jku.at>
date Thu, 13 Aug 2015 10:09:04 +0200
parents 06d082407489
children b34dc4905616
files graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java	Tue Aug 11 17:47:05 2015 +0200
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/lsra/Interval.java	Thu Aug 13 10:09:04 2015 +0200
@@ -616,11 +616,11 @@
     /**
      * Gets the canonical spill slot for this interval.
      */
-    StackSlotValue spillSlot() {
+    public StackSlotValue spillSlot() {
         return splitParent().spillSlot;
     }
 
-    void setSpillSlot(StackSlotValue slot) {
+    public void setSpillSlot(StackSlotValue slot) {
         assert splitParent().spillSlot == null || (isVirtualStackSlot(splitParent().spillSlot) && isStackSlot(slot)) : "connot overwrite existing spill slot";
         splitParent().spillSlot = slot;
     }