Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2017-09-29 23:26:51 +0300
committerTom Stellard <tstellar@redhat.com>2017-09-29 23:26:51 +0300
commit4041da7a87b3ed891fc0021082b72fb3e95dc374 (patch)
tree7e41db850cf994d17f250ef963fb4e47384b2fd4
parentafaf2961869366e72cd23902f023e25ec3381183 (diff)
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. ------------------------------------------------------------------------ llvm-svn: 314553
-rw-r--r--llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp b/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
index c0e22355a9ff..0627976c9146 100644
--- a/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
+++ b/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
@@ -572,7 +572,6 @@ static Optional<LoadInfo> getLoadInfo(const MachineInstr &MI) {
IsPrePost = true;
break;
- case AArch64::LDPDi:
case AArch64::LDPQi:
DestRegIdx = -1;
BaseRegIdx = 2;
@@ -580,6 +579,7 @@ static Optional<LoadInfo> getLoadInfo(const MachineInstr &MI) {
IsPrePost = false;
break;
+ case AArch64::LDPDi:
case AArch64::LDPSWi:
case AArch64::LDPSi:
case AArch64::LDPWi: