Skip to content

Commit c5a9b0f

Browse files
Minor fix.
1 parent 9360d69 commit c5a9b0f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/graal/meta/SharedRuntimeMethod.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
*/
2525
package com.oracle.svm.core.graal.meta;
2626

27+
import com.oracle.svm.core.Uninterruptible;
2728
import com.oracle.svm.core.meta.SharedMethod;
2829

2930
/**
@@ -36,4 +37,8 @@ public interface SharedRuntimeMethod extends SharedMethod {
3637
default SharedRuntimeMethod getOriginal() {
3738
return this;
3839
}
40+
41+
@Override
42+
@Uninterruptible(reason = "Called from uninterruptible code.", mayBeInlined = true)
43+
int getDeoptOffsetInImage();
3944
}

0 commit comments

Comments
 (0)