forked from OSchip/llvm-project
CellSPU: Fix mnemonic typo in pattern; "shlqbyi" -> "shlqby".
llvm-svn: 59998
This commit is contained in:
parent
5c4cc09498
commit
524c284aef
|
@ -177,7 +177,9 @@ SPUTargetLowering::SPUTargetLowering(SPUTargetMachine &TM)
|
|||
setOperationAction(ISD::SELECT_CC, MVT::i8, Custom);
|
||||
setOperationAction(ISD::SELECT_CC, MVT::i16, Custom);
|
||||
setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
|
||||
#if 0
|
||||
setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
|
||||
#endif
|
||||
|
||||
// SPU has no intrinsics for these particular operations:
|
||||
setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
|
||||
|
|
|
@ -1982,7 +1982,7 @@ defm SHLQBII : ShiftLeftQuadByBitsImm;
|
|||
// not by bits. See notes above on SHLQBI.
|
||||
|
||||
class SHLQBYInst<dag OOL, dag IOL, list<dag> pattern>:
|
||||
RI7Form<0b11111011100, OOL, IOL, "shlqbyi\t$rT, $rA, $rB",
|
||||
RI7Form<0b11111011100, OOL, IOL, "shlqby\t$rT, $rA, $rB",
|
||||
RotateShift, pattern>;
|
||||
|
||||
class SHLQBYVecInst<ValueType vectype>:
|
||||
|
|
Loading…
Reference in New Issue