[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / ARM / GlobalISel / pr35375.ll
blob6147646df95d1098a23253de6012b380acf2d37a
1 ; RUN: llc -O0 -mtriple armv7-- -stop-before=finalize-isel < %s
2 ; RUN: llc -O0 -mtriple armv7-- -stop-before=finalize-isel -global-isel < %s
4 ; CHECK: PKHBT
6 define arm_aapcscc i32 @pkh(i32 %x, i32 %y) {
7   %andx = and i32 %x, 65535
8   %shl = shl i32 %y, 1
9   %andy = and i32 %shl, 4294901760 ; same as -65536
10   %or = or i32 %andx, %andy
11   ret i32 %or