mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 23:32:02 +00:00
- fix wrong shift direction
This commit is contained in:
parent
a3f6950a4f
commit
cd211da2d8
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ static TArray<uint16_t> CreateUnwindInfo(asmjit::CCFunc *func)
|
|||
opoffset = (uint32_t)assembler.getOffset();
|
||||
opcode = UWOP_SAVE_XMM128_FAR;
|
||||
opinfo = regId;
|
||||
codes.Push((uint16_t)(vecBase.getOffsetLo32() << 16));
|
||||
codes.Push((uint16_t)(vecBase.getOffsetLo32() >> 16));
|
||||
codes.Push((uint16_t)vecBase.getOffsetLo32());
|
||||
codes.Push(opoffset | (opcode << 8) | (opinfo << 12));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue