diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2010-04-07 18:20:53 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2010-04-07 18:20:53 +0000 |
| commit | 2ef0a12fa10f5e2cc9b1196259064e08f0eb9fc1 (patch) | |
| tree | 5c04871017291a7d69f3a182bd49ae2702725a0b /llvm/lib | |
| parent | 5e208dc21bbf926bcb9e00a8fdbe71cc6d139986 (diff) | |
| download | bcm5719-llvm-2ef0a12fa10f5e2cc9b1196259064e08f0eb9fc1.tar.gz bcm5719-llvm-2ef0a12fa10f5e2cc9b1196259064e08f0eb9fc1.zip | |
Fix invalid NEON MAC itins on A8
llvm-svn: 100659
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMScheduleV7.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/ARM/ARMScheduleV7.td b/llvm/lib/Target/ARM/ARMScheduleV7.td index 03b0ce891fb..7bd8811bf8c 100644 --- a/llvm/lib/Target/ARM/ARMScheduleV7.td +++ b/llvm/lib/Target/ARM/ARMScheduleV7.td @@ -551,21 +551,21 @@ def CortexA8Itineraries : ProcessorItineraries<[ // // Double-register Integer Multiply-Accumulate (.8, .16) InstrItinData<IIC_VMACi16D, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, - InstrStage<1, [FU_NPipe]>], [6, 2, 2, 3]>, + InstrStage<1, [FU_NPipe]>], [6, 3, 2, 2]>, // // Double-register Integer Multiply-Accumulate (.32) InstrItinData<IIC_VMACi32D, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, - InstrStage<2, [FU_NPipe]>], [7, 2, 1, 3]>, + InstrStage<2, [FU_NPipe]>], [7, 3, 2, 1]>, // // Quad-register Integer Multiply-Accumulate (.8, .16) InstrItinData<IIC_VMACi16Q, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, - InstrStage<2, [FU_NPipe]>], [7, 2, 2, 3]>, + InstrStage<2, [FU_NPipe]>], [7, 3, 2, 2]>, // // Quad-register Integer Multiply-Accumulate (.32) InstrItinData<IIC_VMACi32Q, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, 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<IIC_VEXTD, [InstrStage<1, [FU_Pipe0, FU_Pipe1]>, |

