mirror of
https://github.com/opnsense/src.git
synced 2026-07-14 19:51:17 -04:00
Fix a bug in the AMD64 trampoline. I misunderstood the implicit
32->64 bit zero extend. This changes a movl to an orq. Approved by: re (amd64 bits)
This commit is contained in:
parent
c00ee5e567
commit
728ec271c1
1 changed files with 1 additions and 1 deletions
|
|
@ -108,6 +108,6 @@ longmode:
|
|||
/* We're still running V=P, jump to entry point */
|
||||
movl %esi, %eax
|
||||
salq $32, %rax
|
||||
movl %edi, %eax
|
||||
orq %rdi, %rax
|
||||
pushq %rax
|
||||
ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue