Skip to content

Commit a8b4801

Browse files
committedMar 13, 2020
8240846: Zero VM is broken after JDK-8238681: UseSSE not defined
Reviewed-by: shade, rehn, vlivanov
1 parent 38940d1 commit a8b4801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/hotspot/share/compiler/compileBroker.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ nmethod* CompileBroker::compile_method(const methodHandle& method, int osr_bci,
13281328
// do the compilation
13291329
if (method->is_native()) {
13301330
if (!PreferInterpreterNativeStubs || method->is_method_handle_intrinsic()) {
1331-
#ifdef X86
1331+
#if defined(X86) && !defined(ZERO)
13321332
// The following native methods:
13331333
//
13341334
// java.lang.Float.intBitsToFloat
@@ -1350,7 +1350,7 @@ nmethod* CompileBroker::compile_method(const methodHandle& method, int osr_bci,
13501350
method->intrinsic_id() == vmIntrinsics::_doubleToRawLongBits))) {
13511351
return NULL;
13521352
}
1353-
#endif // X86
1353+
#endif // X86 && !ZERO
13541354

13551355
// To properly handle the appendix argument for out-of-line calls we are using a small trampoline that
13561356
// pops off the appendix argument and jumps to the target (see gen_special_dispatch in SharedRuntime).

0 commit comments

Comments
 (0)
Please sign in to comment.