forked from OSchip/llvm-project
[AArch64][Falkor] Fix bug in Falkor HWPF tag collision avoidance
LDPDi was incorrectly marked as ignoring the destination register in the prefetcher tag. llvm-svn: 311599
This commit is contained in:
parent
ed9569dac8
commit
90bef32219
|
@ -592,7 +592,6 @@ static Optional<LoadInfo> getLoadInfo(const MachineInstr &MI) {
|
|||
IsPrePost = true;
|
||||
break;
|
||||
|
||||
case AArch64::LDPDi:
|
||||
case AArch64::LDPQi:
|
||||
DestRegIdx = -1;
|
||||
BaseRegIdx = 2;
|
||||
|
@ -600,6 +599,7 @@ static Optional<LoadInfo> getLoadInfo(const MachineInstr &MI) {
|
|||
IsPrePost = false;
|
||||
break;
|
||||
|
||||
case AArch64::LDPDi:
|
||||
case AArch64::LDPSWi:
|
||||
case AArch64::LDPSi:
|
||||
case AArch64::LDPWi:
|
||||
|
|
Loading…
Reference in New Issue