Skip to content

Commit d181e62

Browse files
committed
Merging r311599:
------------------------------------------------------------------------ r311599 | gberry | 2017-08-23 14:11:28 -0700 (Wed, 23 Aug 2017) | 4 lines [AArch64][Falkor] Fix bug in Falkor HWPF tag collision avoidance LDPDi was incorrectly marked as ignoring the destination register in the prefetcher tag. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@314553 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b1e6cc7 commit d181e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Target/AArch64/AArch64FalkorHWPFFix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,14 +572,14 @@ static Optional<LoadInfo> getLoadInfo(const MachineInstr &MI) {
572572
IsPrePost = true;
573573
break;
574574

575-
case AArch64::LDPDi:
576575
case AArch64::LDPQi:
577576
DestRegIdx = -1;
578577
BaseRegIdx = 2;
579578
OffsetIdx = 3;
580579
IsPrePost = false;
581580
break;
582581

582+
case AArch64::LDPDi:
583583
case AArch64::LDPSWi:
584584
case AArch64::LDPSi:
585585
case AArch64::LDPWi:

0 commit comments

Comments
 (0)