From b80ca4902af71938b32634d3fd230f4d65cde454 Mon Sep 17 00:00:00 2001 From: theoweidmannoracle Date: Wed, 13 Nov 2024 14:55:20 +0000 Subject: [PATCH] 8344124: JDK-8341411 Broke the build Reviewed-by: thartmann, chagedorn, epeter, jwaters --- src/hotspot/share/opto/library_call.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/opto/library_call.cpp b/src/hotspot/share/opto/library_call.cpp index d922f4822dd1f..226fddce29ba6 100644 --- a/src/hotspot/share/opto/library_call.cpp +++ b/src/hotspot/share/opto/library_call.cpp @@ -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;