8226222: [JVMCI] Export AArch64 field VM_Version::_psr_info.dczid_el0

Reviewed-by: kvn
This commit is contained in:
Pengfei Li 2019-06-17 09:40:07 +00:00
parent da39f4ff6e
commit 42cb79a91f
2 changed files with 4 additions and 3 deletions

View file

@ -308,7 +308,8 @@ jobjectArray readConfiguration0(JNIEnv *env, JVMCI_TRAPS) {
BOXED_BOOLEAN(box, *(jbyte*) vmField.address);
assert(box.is_non_null(), "must have a box");
} else if (strcmp(vmField.typeString, "int") == 0 ||
strcmp(vmField.typeString, "jint") == 0) {
strcmp(vmField.typeString, "jint") == 0 ||
strcmp(vmField.typeString, "uint32_t") == 0) {
BOXED_LONG(box, *(jint*) vmField.address);
assert(box.is_non_null(), "must have a box");
} else if (strcmp(vmField.typeString, "uint64_t") == 0) {