summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/shifter_operand.ll
blob: 313caed763686e0ab2d69b6eaf1d846505cca16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep add | grep lsl
; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep bic | grep asr

int %test1(int %X, int %Y, ubyte %sh) {
  %A = shl int %Y, ubyte %sh
  %B = add int %X, %A
  ret int %B
}

int %test2(int %X, int %Y, ubyte %sh) {
  %A = shr int %Y, ubyte %sh
  %B = xor int %A, -1
  %C = and int %X, %B
  ret int %C
}