From 68169343a5c21c8ccc17256d67ee3366c4b3809b Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Tue, 3 Jul 2018 19:12:27 +0000 Subject: [PATCH] [ARM] Fix inconsistent declaration parameter name in r336195 llvm-svn: 336223 --- llvm/lib/Target/ARM/ARMParallelDSP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/ARM/ARMParallelDSP.cpp b/llvm/lib/Target/ARM/ARMParallelDSP.cpp index 2e4f4ec38842..e681168b0aa8 100644 --- a/llvm/lib/Target/ARM/ARMParallelDSP.cpp +++ b/llvm/lib/Target/ARM/ARMParallelDSP.cpp @@ -84,7 +84,7 @@ namespace { Module *M; bool InsertParallelMACs(Reduction &Reduction, PMACPairList &PMACPairs); - bool AreSequentialLoads(LoadInst *Ld0, LoadInst *Ld1, MemInstList &VecLd); + bool AreSequentialLoads(LoadInst *Ld0, LoadInst *Ld1, MemInstList &VecMem); PMACPairList CreateParallelMACPairs(ParallelMACList &Candidates); Instruction *CreateSMLADCall(LoadInst *VecLd0, LoadInst *VecLd1, Instruction *Acc, Instruction *InsertAfter);