diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2010-04-07 18:21:33 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2010-04-07 18:21:33 +0000 |
commit | f3da92b2f27a99bf96939e39c6ec8a9d04d21ba4 (patch) | |
tree | 3f3c476fc59ced8ba1d2c0bd581c2a1a1e65f1c8 /lib | |
parent | 924369d58ea6641419e4e38963ff39afad8098e8 (diff) | |
download | external_llvm-f3da92b2f27a99bf96939e39c6ec8a9d04d21ba4.zip external_llvm-f3da92b2f27a99bf96939e39c6ec8a9d04d21ba4.tar.gz external_llvm-f3da92b2f27a99bf96939e39c6ec8a9d04d21ba4.tar.bz2 |
Fix A8 FP NEON MAC itins
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMScheduleV7.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMScheduleV7.td b/lib/Target/ARM/ARMScheduleV7.td index ffec43e..7a628d0 100644 --- a/lib/Target/ARM/ARMScheduleV7.td +++ b/lib/Target/ARM/ARMScheduleV7.td @@ -423,13 +423,13 @@ def CortexA8Itineraries : ProcessorItineraries<[ // // Double-register FP Multiple-Accumulate InstrItinData<IIC_VMACD, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, - InstrStage<1, [FU_NPipe]>], [9, 2, 2, 3]>, + InstrStage<1, [FU_NPipe]>], [9, 3, 2, 2]>, // // Quad-register FP Multiple-Accumulate // Result written in N9, but that is relative to the last cycle of multicycle, // so we use 10 for those cases InstrItinData<IIC_VMACQ, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, - InstrStage<2, [FU_NPipe]>], [10, 2, 2, 3]>, + InstrStage<2, [FU_NPipe]>], [10, 3, 2, 2]>, // // Double-register Reciprical Step InstrItinData<IIC_VRECSD, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, |