- 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…
Add table
Add a link
Reference in a new issue