Skip to content

Commit

Permalink
Remove printf
Browse files Browse the repository at this point in the history
  • Loading branch information
robehn committed Apr 19, 2024
1 parent 6906395 commit ebf9547
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/hotspot/cpu/riscv/nativeInst_riscv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 0 additions & 4 deletions src/hotspot/cpu/riscv/relocInfo_riscv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down

0 comments on commit ebf9547

Please sign in to comment.