[all-commits] [llvm/llvm-project] 35909f: [PowerPC] Fix the splat immediate in PPCMIPeephole...
Amy Kwan via All-commits
all-commits at lists.llvm.org
Mon Jul 12 14:20:36 PDT 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 35909ff6cf27373efa6f1974d4ad349beb6959a0
https://github.com/llvm/llvm-project/commit/35909ff6cf27373efa6f1974d4ad349beb6959a0
Author: Amy Kwan <amy.kwan1 at ibm.com>
Date: 2021-07-12 (Mon, 12 Jul 2021)
Changed paths:
M llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
A llvm/test/CodeGen/PowerPC/aix-vsx-splatimm.ll
Log Message:
-----------
[PowerPC] Fix the splat immediate in PPCMIPeephole depending on if we have an Altivec and VSX splat instruction.
An assertion of the following can occur because Altivec and VSX splats use a different operand number for the immediate:
```
int64_t llvm::MachineOperand::getImm() const: Assertion `isImm() && "Wrong MachineOperand accessor"' failed.
```
This patch updates PPCMIPeephole.cpp assign the correct splat immediate.
Differential Revision: https://reviews.llvm.org/D105790
More information about the All-commits
mailing list