diff --git a/src/hotspot/cpu/riscv/nativeInst_riscv.hpp b/src/hotspot/cpu/riscv/nativeInst_riscv.hpp index 76b06dec9326b..c68b6e362fde1 100644 --- a/src/hotspot/cpu/riscv/nativeInst_riscv.hpp +++ b/src/hotspot/cpu/riscv/nativeInst_riscv.hpp @@ -379,7 +379,6 @@ class NativeCall: private NativeInstruction { inline NativeCall* nativeCall_at(address addr) { assert_cond(addr != nullptr); - //printf("nativeCall_at: %p\n", addr); NativeCall* call = (NativeCall*)(addr); DEBUG_ONLY(call->verify()); return call; diff --git a/src/hotspot/cpu/riscv/relocInfo_riscv.cpp b/src/hotspot/cpu/riscv/relocInfo_riscv.cpp index c24347f5e1a1c..b8be88926be88 100644 --- a/src/hotspot/cpu/riscv/relocInfo_riscv.cpp +++ b/src/hotspot/cpu/riscv/relocInfo_riscv.cpp @@ -86,12 +86,8 @@ void Relocation::pd_set_call_destination(address x) { } } address pd_call = pd_call_destination(addr()); - // printf("%s| No tramp patching of %p contains %p\n", __PRETTY_FUNCTION__, addr(), pd_call); - // fflush(stdout); MacroAssembler::pd_patch_instruction_size(addr(), x); pd_call = pd_call_destination(addr()); - // printf("%s| No tramp patching of %p contains TO %p\n", __PRETTY_FUNCTION__, addr(), pd_call); - // fflush(stdout); assert(pd_call == x, "fail in reloc"); }