Skip to content

Commit

Permalink
Rename lc
Browse files Browse the repository at this point in the history
  • Loading branch information
robehn committed Jun 27, 2024
1 parent d77ead9 commit 442680b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hotspot/cpu/riscv/macroAssembler_riscv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4024,7 +4024,7 @@ address MacroAssembler::trampoline_call(Address entry) {
return call_pc;
}

address MacroAssembler::load_call(Address entry) {
address MacroAssembler::load_and_call(Address entry) {
assert(entry.rspec().type() == relocInfo::runtime_call_type ||
entry.rspec().type() == relocInfo::opt_virtual_call_type ||
entry.rspec().type() == relocInfo::static_call_type ||
Expand Down
4 changes: 2 additions & 2 deletions src/hotspot/cpu/riscv/macroAssembler_riscv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1273,11 +1273,11 @@ class MacroAssembler: public Assembler {
//
// Return: the call PC or null if CodeCache is full.
address patchable_far_call(Address entry) {
return UseTrampolines ? trampoline_call(entry) : load_call(entry);
return UseTrampolines ? trampoline_call(entry) : load_and_call(entry);
}
private:
address trampoline_call(Address entry);
address load_call(Address entry);
address load_and_call(Address entry);
public:

address ic_call(address entry, jint method_index = 0);
Expand Down

0 comments on commit 442680b

Please sign in to comment.