From d76da03e91e5ae31e944bd5e8f0c4a93bc6984e5 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Wed, 7 Apr 2010 18:20:53 +0000 Subject: [PATCH] Fix invalid NEON MAC itins on A8 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100659 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMScheduleV7.td | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Target/ARM/ARMScheduleV7.td b/lib/Target/ARM/ARMScheduleV7.td index 03b0ce891fb..7bd8811bf8c 100644 --- a/lib/Target/ARM/ARMScheduleV7.td +++ b/lib/Target/ARM/ARMScheduleV7.td @@ -551,21 +551,21 @@ def CortexA8Itineraries : ProcessorItineraries<[ // // Double-register Integer Multiply-Accumulate (.8, .16) InstrItinData, - InstrStage<1, [FU_NPipe]>], [6, 2, 2, 3]>, + InstrStage<1, [FU_NPipe]>], [6, 3, 2, 2]>, // // Double-register Integer Multiply-Accumulate (.32) InstrItinData, - InstrStage<2, [FU_NPipe]>], [7, 2, 1, 3]>, + InstrStage<2, [FU_NPipe]>], [7, 3, 2, 1]>, // // Quad-register Integer Multiply-Accumulate (.8, .16) InstrItinData, - InstrStage<2, [FU_NPipe]>], [7, 2, 2, 3]>, + InstrStage<2, [FU_NPipe]>], [7, 3, 2, 2]>, // // Quad-register Integer Multiply-Accumulate (.32) InstrItinData, InstrStage<1, [FU_NPipe]>, InstrStage<2, [FU_NLSPipe], 0>, - InstrStage<3, [FU_NPipe]>], [9, 2, 1, 3]>, + InstrStage<3, [FU_NPipe]>], [9, 3, 2, 1]>, // // Double-register VEXT InstrItinData, -- 2.34.1