-
Bug
-
Resolution: Fixed
-
P3
-
11, 12
-
b14
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8213067 | 11.0.2 | Vladimir Kozlov | P3 | Resolved | Fixed | b02 |
x86_32:
* For target hotspot_variant-server_libjvm_objs_c1_LIRAssembler_x86.o:
/pool/buildbot/slaves/sobornost/jdkX/build/src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp: In member function 'void LIR_Assembler::intrinsic_op(LIR_Code, LIR_Opr, LIR_Opr, LIR_Opr, LIR_Op*)':
/pool/buildbot/slaves/sobornost/jdkX/build/src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp:2399:11: error: enumeration value 'lir_none' not handled in switch [-Werror=switch]
switch(code) {
^
The reported trouble is mishandled switch, but the actual reason is control flow problem with _LP64 disabled:
case lir_abs :
{
#ifdef _LP64
if (UseAVX > 2 && !VM_Version::supports_avx512vl()) {
...
} else { ; <----- this open brace should show up on !_LP64 path
#endif
...
}
}
* For target hotspot_variant-server_libjvm_objs_c1_LIRAssembler_x86.o:
/pool/buildbot/slaves/sobornost/jdkX/build/src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp: In member function 'void LIR_Assembler::intrinsic_op(LIR_Code, LIR_Opr, LIR_Opr, LIR_Opr, LIR_Op*)':
/pool/buildbot/slaves/sobornost/jdkX/build/src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp:2399:11: error: enumeration value 'lir_none' not handled in switch [-Werror=switch]
switch(code) {
^
The reported trouble is mishandled switch, but the actual reason is control flow problem with _LP64 disabled:
case lir_abs :
{
#ifdef _LP64
if (UseAVX > 2 && !VM_Version::supports_avx512vl()) {
...
} else { ; <----- this open brace should show up on !_LP64 path
#endif
...
}
}
- backported by
-
JDK-8213067 x86_32 build failures after JDK-8210764 (Update avx512 implementation)
-
- Resolved
-
- relates to
-
JDK-8210764 Update avx512 implementation
-
- Resolved
-