Skip to content

Commit

Permalink
Merge pull request #163 from weinholt/master
Browse files Browse the repository at this point in the history
Fix build failure on Linux amd64 with gcc 7
  • Loading branch information
fujita-y authored Jan 31, 2022
2 parents 820aa1b + 4e338f9 commit a28f4d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ffi_stub_linux64.s
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,15 @@ sse_done:
ret

c_callback_stub_double_x64:
movq $c_callback_double_x64, %r11
movq c_callback_double_x64@GOTPCREL(%rip), %r11
jmp callback_stub_common

c_callback_stub_float_x64:
movq $c_callback_float_x64, %r11
movq c_callback_float_x64@GOTPCREL(%rip), %r11
jmp callback_stub_common

c_callback_stub_intptr_x64:
movq $c_callback_intptr_x64, %r11
movq c_callback_intptr_x64@GOTPCREL(%rip), %r11
jmp callback_stub_common

callback_stub_common:
Expand Down

0 comments on commit a28f4d5

Please sign in to comment.