mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
correct false permute arguments for Div 32bit integer
This commit is contained in:
parent
f16f0b66aa
commit
fcb4fa6b40
1 changed files with 1 additions and 1 deletions
|
|
@ -110,8 +110,8 @@ namespace Cosmos.IL2CPU.X86.IL
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
new CPUx86.Pop { DestinationReg = CPUx86.Registers.EAX };
|
|
||||||
new CPUx86.Pop { DestinationReg = CPUx86.Registers.ECX };
|
new CPUx86.Pop { DestinationReg = CPUx86.Registers.ECX };
|
||||||
|
new CPUx86.Pop { DestinationReg = CPUx86.Registers.EAX };
|
||||||
new CPUx86.SignExtendAX { Size = 32 };
|
new CPUx86.SignExtendAX { Size = 32 };
|
||||||
new CPUx86.IDivide { DestinationReg = CPUx86.Registers.ECX };
|
new CPUx86.IDivide { DestinationReg = CPUx86.Registers.ECX };
|
||||||
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
new CPUx86.Push { DestinationReg = CPUx86.Registers.EAX };
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue