1 ; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios -verify-machineinstrs | FileCheck %s --check-prefix=ARM
2 ; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi -verify-machineinstrs | FileCheck %s --check-prefix=ARM
4 define i32 @shl() nounwind ssp {
12 define i32 @shl_reg(i32 %src1, i32 %src2) nounwind ssp {
16 %shl = shl i32 %src1, %src2
20 define i32 @lshr() nounwind ssp {
24 %lshr = lshr i32 -1, 2
28 define i32 @lshr_reg(i32 %src1, i32 %src2) nounwind ssp {
32 %lshr = lshr i32 %src1, %src2
36 define i32 @ashr() nounwind ssp {
40 %ashr = ashr i32 -1, 2
44 define i32 @ashr_reg(i32 %src1, i32 %src2) nounwind ssp {
48 %ashr = ashr i32 %src1, %src2