24 lines
942 B
Diff
24 lines
942 B
Diff
Date: Thu, 8 Jun 2023 20:36:17 +0800
|
|
Subject: fix TestMD5Intrinsics.java and TestMD5MultiBlockIntrinsics.java crash
|
|
|
|
---
|
|
hotspot/src/cpu/x86/vm/stubRoutines_x86_64.hpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hotspot/src/cpu/x86/vm/stubRoutines_x86_64.hpp b/hotspot/src/cpu/x86/vm/stubRoutines_x86_64.hpp
|
|
index f963cd2f8..e153e3f36 100644
|
|
--- a/hotspot/src/cpu/x86/vm/stubRoutines_x86_64.hpp
|
|
+++ b/hotspot/src/cpu/x86/vm/stubRoutines_x86_64.hpp
|
|
@@ -33,7 +33,7 @@ static bool returns_to_call_stub(address return_pc) { return return_pc == _
|
|
|
|
enum platform_dependent_constants {
|
|
code_size1 = 19000, // simply increase if too small (assembler will crash if too small)
|
|
- code_size2 = 27000 // simply increase if too small (assembler will crash if too small)
|
|
+ code_size2 = 28000 // simply increase if too small (assembler will crash if too small)
|
|
};
|
|
|
|
class x86 {
|
|
--
|
|
2.22.0
|
|
|