8344124: JDK-8341411 Broke the build

Reviewed-by: thartmann, chagedorn, epeter, jwaters
This commit is contained in:
theoweidmannoracle 2024-11-13 14:55:20 +00:00 committed by Julian Waters
parent a08d67c2a9
commit b80ca4902a

View File

@ -3679,7 +3679,7 @@ bool LibraryCallKit::inline_native_setCurrentThread() {
// Change the lock_id of the JavaThread
Node* tid = load_field_from_object(arr, "tid", "J");
Node* thread_id_offset = basic_plus_adr(thread, in_bytes(JavaThread::lock_id_offset()));
Node* tid_memory = store_to_memory(control(), thread_id_offset, tid, T_LONG, Compile::AliasIdxRaw, MemNode::unordered, true);
Node* tid_memory = store_to_memory(control(), thread_id_offset, tid, T_LONG, MemNode::unordered, true);
JFR_ONLY(extend_setCurrentThread(thread, arr);)
return true;