[X86][SSE] Add an assert to ensure that rotation amount is converted to a scale
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 21 May 2018 15:17:23 +0000 (15:17 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 21 May 2018 15:17:23 +0000 (15:17 +0000)
Missed in rL332832 where we added SSE v4i32 rotations for PR37426.

llvm-svn: 332844

llvm/lib/Target/X86/X86ISelLowering.cpp

index 8809c9c..4614e24 100644 (file)
@@ -23825,6 +23825,7 @@ static SDValue LowerRotate(SDValue Op, const X86Subtarget &Subtarget,
   // to v2i64 results at a time. The upper 32-bits contain the wrapped bits
   // that can then be OR'd with the lower 32-bits.
   Amt = convertShiftLeftToScale(Amt, DL, Subtarget, DAG);
+  assert(Amt && "Failed to convert ROTL amount to scale");
 
   static const int OddMask[] = {1, -1, 3, -1};
   SDValue R13 = DAG.getVectorShuffle(VT, DL, R, R, OddMask);