diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2010-10-01 21:48:06 +0000 | 
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2010-10-01 21:48:06 +0000 | 
| commit | 1969887fc612a4dd6d6192464beaef435301d39b (patch) | |
| tree | e7c614a67d5ed3ac9c65f501c61dc2f7bd8f95c8 | |
| parent | f3179567deb6a5fa0fe4aea9996c0ac77af53d14 (diff) | |
| download | bcm5719-llvm-1969887fc612a4dd6d6192464beaef435301d39b.tar.gz bcm5719-llvm-1969887fc612a4dd6d6192464beaef435301d39b.zip  | |
Fix scheduling infor for vmovn and vshrn which I broke accidentially.
llvm-svn: 115354
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrNEON.td | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/ARM/ARMScheduleA8.td | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrNEON.td b/llvm/lib/Target/ARM/ARMInstrNEON.td index 93e9e660775..03714343d3c 100644 --- a/llvm/lib/Target/ARM/ARMInstrNEON.td +++ b/llvm/lib/Target/ARM/ARMInstrNEON.td @@ -3177,7 +3177,7 @@ def  VSHLLi32 : N2VLShMax<1, 1, 0b111010, 0b0011, 0, 0, 0, "vshll", "i32",                            v2i64, v2i32, NEONvshlli>;  //   VSHRN    : Vector Shift Right and Narrow -defm VSHRN    : N2VNSh_HSD<0,1,0b1000,0,0,1, IIC_VMOVN, "vshrn", "i", +defm VSHRN    : N2VNSh_HSD<0,1,0b1000,0,0,1, IIC_VSHLiD, "vshrn", "i",                             NEONvshrn>;  //   VRSHL    : Vector Rounding Shift diff --git a/llvm/lib/Target/ARM/ARMScheduleA8.td b/llvm/lib/Target/ARM/ARMScheduleA8.td index ef93e1da555..915283bd259 100644 --- a/llvm/lib/Target/ARM/ARMScheduleA8.td +++ b/llvm/lib/Target/ARM/ARMScheduleA8.td @@ -531,7 +531,7 @@ def CortexA8Itineraries : ProcessorItineraries<    //    // Vector narrow move    InstrItinData<IIC_VMOVN   , [InstrStage<1, [A8_Pipe0, A8_Pipe1]>, -                               InstrStage<1, [A8_NPipe]>], [3, 1]>, +                               InstrStage<1, [A8_NPipe]>], [2, 1]>,    //    // Double-register Permute    InstrItinData<IIC_VPERMD,   [InstrStage<1, [A8_Pipe0, A8_Pipe1]>,  | 

