Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / ARM / GlobalISel / pr35375.ll
blobebef54542bc7310fc14f28081cd86d5d111a9a76
1 ; RUN: llc -O0 -mtriple armv7-- -stop-before=expand-isel-pseudos < %s
2 ; RUN: llc -O0 -mtriple armv7-- -stop-before=expand-isel-pseudos -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