diff options
| author | chedahub <2017000029@ushs.hs.kr> | 2025-10-29 15:07:07 +0900 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2025-10-29 10:02:54 -0400 |
| commit | 11010433c257abd9eeabb474a20ad6a832af0867 (patch) | |
| tree | abc3bfd9f945266aebc3d5bb8d8779062dce0dee /arch | |
| parent | 72fcf44f3731ade3cf1310da55f633f1cb9069ce (diff) | |
Fix(ppc/spe): Correct source operand parsing for EVX instructions
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/powerpc/decode/operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/decode/operands.c b/arch/powerpc/decode/operands.c index 15628049..3350737a 100644 --- a/arch/powerpc/decode/operands.c +++ b/arch/powerpc/decode/operands.c @@ -2868,7 +2868,7 @@ void FillOperands32(Instruction* instruction, uint32_t word32, uint64_t address) case PPC_ID_SPE_EVFSCTUI: case PPC_ID_SPE_EVFSCTUIZ: PushRD(instruction, word32); - PushRA(instruction, word32); + PushRB(instruction, word32); break; // crfD//, rA, rB |
