-
Bug
-
Resolution: Fixed
-
P4
-
11.0.7-oracle, 15
-
b20
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8243213 | 11.0.8-oracle | Vladimir Kozlov | P4 | Resolved | Fixed | b04 |
./share/jvmci/jvmciEnv.hpp
JVMCIObject create_string(Symbol* str, JVMCI_TRAPS) {
return create_string(str->as_C_string(), JVMCI_CHECK_(JVMCIObject()));
}
You can't use CHECK macros on a return statement - they expand to include code after the return and so have no affect.
JVMCIObject create_string(Symbol* str, JVMCI_TRAPS) {
return create_string(str->as_C_string(), JVMCI_CHECK_(JVMCIObject()));
}
You can't use CHECK macros on a return statement - they expand to include code after the return and so have no affect.
- backported by
-
JDK-8243213 [JVMCI] Incorrect use of JVMCI_CHECK_ on return statement
- Resolved
- relates to
-
JDK-8220623 [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
- Resolved