Skip to content

Commit ea04f15

Browse files
authored
Merge pull request openjdk#3 from zhengxiaolinX/JDK-8286301-loom-riscv-port-2
RISC-V: loom: expand stub size of continuation_enter_intrinsic
2 parents 74476f7 + f3ac29f commit ea04f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/runtime/sharedRuntime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3030,7 +3030,7 @@ void AdapterHandlerLibrary::create_native_wrapper(const methodHandle& method) {
30303030
CodeBuffer buffer(buf);
30313031

30323032
if (method->is_continuation_enter_intrinsic()) {
3033-
buffer.initialize_stubs_size(128);
3033+
buffer.initialize_stubs_size(NOT_RISCV64(128) RISCV64_ONLY(192));
30343034
}
30353035

30363036
struct { double data[20]; } locs_buf;

0 commit comments

Comments
 (0)