diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-09-25 01:09:28 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-09-25 01:09:28 +0000 |
commit | 5981fc67883bfa74ac13625b05442b54ea7f6a1f (patch) | |
tree | 8121c45e747908964e035fcf53c1a8921379b505 | |
parent | 27fdcd1c95fb1ded32d5e3876fed3c0f0641ab30 (diff) |
Fix IIC_iEXTAr itinerary class of Cortex-A9.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114784 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMScheduleA9.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMScheduleA9.td b/lib/Target/ARM/ARMScheduleA9.td index 4118b90907..165ecbcbac 100644 --- a/lib/Target/ARM/ARMScheduleA9.td +++ b/lib/Target/ARM/ARMScheduleA9.td @@ -53,7 +53,7 @@ def CortexA9Itineraries : ProcessorItineraries< // // Zero and sign extension instructions InstrItinData<IIC_iEXTr , [InstrStage<1, [A9_Pipe0, A9_Pipe1]>], [2, 1]>, - InstrItinData<IIC_iEXTAr, [InstrStage<1, [A9_Pipe0, A9_Pipe1]>], [3, 1, 1]>, + InstrItinData<IIC_iEXTAr, [InstrStage<2, [A9_Pipe0, A9_Pipe1]>], [3, 1, 1]>, // // Compare instructions InstrItinData<IIC_iCMPi , [InstrStage<1, [A9_Pipe0, A9_Pipe1]>], [2]>, |