Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.
/ julia Public archive
forked from JuliaLang/julia

Commit 7ccd12b

Browse files
committedMar 19, 2014
fix hex conversion typo in win64 sjlj code
1 parent a9758ba commit 7ccd12b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/support/_longjmp.win64.S

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ENTRY(jl_longjmp)
1515
mov r15,QWORD PTR [rcx+72]
1616
mov r8, QWORD PTR [rcx+80]
1717
movaps xmm6,XMMWORD PTR [rcx+96]
18-
movaps xmm7,XMMWORD PTR [rcx+120]
18+
movaps xmm7,XMMWORD PTR [rcx+112]
1919
movaps xmm8,XMMWORD PTR [rcx+128]
20-
movaps xmm9,XMMWORD PTR [rcx+130]
20+
movaps xmm9,XMMWORD PTR [rcx+144]
2121
movaps xmm10,XMMWORD PTR [rcx+160]
2222
movaps xmm11,XMMWORD PTR [rcx+176]
2323
movaps xmm12,XMMWORD PTR [rcx+192]

‎src/support/_setjmp.win64.S

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ ENTRY(jl_setjmp)
1818
mov QWORD PTR [rcx+80],rdx
1919
mov QWORD PTR [rcx+88],0
2020
movaps XMMWORD PTR [rcx+96],xmm6
21-
movaps XMMWORD PTR [rcx+120],xmm7
21+
movaps XMMWORD PTR [rcx+112],xmm7
2222
movaps XMMWORD PTR [rcx+128],xmm8
23-
movaps XMMWORD PTR [rcx+130],xmm9
23+
movaps XMMWORD PTR [rcx+144],xmm9
2424
movaps XMMWORD PTR [rcx+160],xmm10
2525
movaps XMMWORD PTR [rcx+176],xmm11
2626
movaps XMMWORD PTR [rcx+192],xmm12

0 commit comments

Comments
 (0)