changeset 13939:599f1f616c3c

Allow outside access to field
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 12 Feb 2014 10:23:54 -0800
parents aa8fb1cb16d1
children c0309792b0cd
files graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java	Wed Feb 12 10:23:41 2014 -0800
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java	Wed Feb 12 10:23:54 2014 -0800
@@ -122,6 +122,10 @@
         return frameSize;
     }
 
+    public int outgoingSize() {
+        return outgoingSize;
+    }
+
     /**
      * Determines if any space is used in the frame apart from the
      * {@link Architecture#getReturnAddressSize() return address slot}.