We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9aa72 commit d61720aCopy full SHA for d61720a
src/hotspot/share/prims/jvmtiManageCapabilities.cpp
@@ -107,14 +107,6 @@ jvmtiCapabilities JvmtiManageCapabilities::init_onload_capabilities() {
107
#ifndef ZERO
108
jc.can_pop_frame = 1;
109
jc.can_force_early_return = 1;
110
- // Workaround for 8195635:
111
- // disable pop_frame and force_early_return capabilities with Graal
112
-#if INCLUDE_JVMCI
113
- if (UseJVMCICompiler) {
114
- jc.can_pop_frame = 0;
115
- jc.can_force_early_return = 0;
116
- }
117
-#endif // INCLUDE_JVMCI
118
#endif // !ZERO
119
jc.can_get_source_debug_extension = 1;
120
jc.can_access_local_variables = 1;
0 commit comments