Skip to content

Commit

Permalink
Merge pull request erlang#7284 from jhogberg/john/erts/add-missing-fr…
Browse files Browse the repository at this point in the history
…ame-pointers

jit: Add missing frame pointer in i_get_map_element
  • Loading branch information
jhogberg authored May 25, 2023
2 parents 0170a12 + 8c14f92 commit cb3b5a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions erts/emulator/beam/jit/x86/instr_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,11 @@ void BeamGlobalAssembler::emit_i_get_map_element_shared() {

a.bind(generic);
{
emit_enter_frame();
emit_enter_runtime();
runtime_call<2>(get_map_element);
emit_leave_runtime();
emit_leave_frame();

emit_test_the_non_value(RET);

Expand Down

0 comments on commit cb3b5a9

Please sign in to comment.