Skip to content

Commit 49e46ad

Browse files
author
Andrew Haley
committed
Review comments
1 parent 51e59af commit 49e46ad

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

src/hotspot/cpu/arm/c1_LIRAssembler_arm.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1897,9 +1897,11 @@ void LIR_Assembler::comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Op
18971897

18981898

18991899
void LIR_Assembler::align_call(LIR_Code code) {
1900-
__ save_profile_rng();
19011900
}
19021901

1902+
void LIR_Assembler::save_profile_rng() {
1903+
__ save_profile_rng();
1904+
}
19031905

19041906
void LIR_Assembler::call(LIR_OpJavaCall *op, relocInfo::relocType rtype) {
19051907
int ret_addr_offset = __ patchable_call(op->addr(), rtype);

src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2229,6 +2229,11 @@ void LIR_Assembler::align_call(LIR_Code code) {
22292229
}
22302230

22312231

2232+
void LIR_Assembler::save_profile_rng() {
2233+
__ save_profile_rng();
2234+
}
2235+
2236+
22322237
void LIR_Assembler::call(LIR_OpJavaCall* op, relocInfo::relocType rtype) {
22332238
assert((__ offset() + NativeCall::displacement_offset) % BytesPerWord == 0,
22342239
"must be aligned");

0 commit comments

Comments
 (0)