Relates :
|
./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.
|