Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arch/powerpc/decode/vle32.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ static uint32_t ComputeSCI8(uint32_t word32) {

static void FillOperands32Vle(Instruction* instruction, uint32_t word32, uint64_t address, bool translate)
{
uint16_t ui0_4 = (word32 >> 16) & 0x1f;
uint16_t ui0_4 = (word32 >> 21) & 0x1f;
uint16_t ui5_15 = word32 & 0x7ff;
uint32_t ui_split16 = (ui0_4 << 11) | ui5_15;
int32_t si_split16 = (int32_t)(int16_t)(uint16_t)(ui_split16);
Expand Down