Merge "Fix wrong mov instruction size."

This commit is contained in:
Treehugger Robot 2018-01-25 23:34:56 +00:00 committed by Gerrit Code Review
commit dc0edb586d
1 changed files with 6 additions and 6 deletions

View File

@ -50,12 +50,12 @@ AsmGetRegs:
movl (%esp), %ecx
movl %ecx, 32(%eax)
movl %cs, 36(%eax)
movl %ss, 40(%eax)
movl %ds, 44(%eax)
movl %es, 48(%eax)
movl %fs, 52(%eax)
movl %gs, 56(%eax)
mov %cs, 36(%eax)
mov %ss, 40(%eax)
mov %ds, 44(%eax)
mov %es, 48(%eax)
mov %fs, 52(%eax)
mov %gs, 56(%eax)
ret
.cfi_endproc