aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2006-10-20-mask.ll
blob: 8e829a79859a577300d45fe74f7a9c87e1a21fc8 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade %s -o - | llvm-as | opt -instcombine | llvm-dis | \
; RUN:    grep and
ulong %foo(ulong %tmp, ulong %tmp2) {
  %tmp = cast ulong %tmp to uint
  %tmp2 = cast ulong %tmp2 to uint
  %tmp3 = and uint %tmp, %tmp2
  %tmp4 = cast uint %tmp3 to ulong
  ret ulong %tmp4
}