mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8035392: cppInterpreter: fix message of NPE
Reviewed-by: kvn
This commit is contained in:
parent
683ea742f2
commit
b0422f5f50
1 changed files with 4 additions and 4 deletions
|
@ -415,10 +415,10 @@
|
|||
* On some architectures/platforms it should be possible to do this implicitly
|
||||
*/
|
||||
#undef CHECK_NULL
|
||||
#define CHECK_NULL(obj_) \
|
||||
if ((obj_) == NULL) { \
|
||||
VM_JAVA_ERROR(vmSymbols::java_lang_NullPointerException(), "", note_nullCheck_trap); \
|
||||
} \
|
||||
#define CHECK_NULL(obj_) \
|
||||
if ((obj_) == NULL) { \
|
||||
VM_JAVA_ERROR(vmSymbols::java_lang_NullPointerException(), NULL, note_nullCheck_trap); \
|
||||
} \
|
||||
VERIFY_OOP(obj_)
|
||||
|
||||
#define VMdoubleConstZero() 0.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue