aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Alpha/zapnot3.ll
blob: 371044a081f21e3ea826512f3c2e33b0015f54ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llvm-as < %s | llc -march=alpha | grep zapnot | wc -l | grep 2

ulong %foo(ulong %y) {
        %tmp = and ulong %y,  65535
        %tmp2 = shr ulong %tmp,  ubyte 3
        ret ulong %tmp2
}

ulong %foo2(ulong %y) {
        %tmp = shr ulong %y, ubyte 3            ; <ulong> [#uses=1]
        %tmp2 = and ulong %tmp, 8191            ; <ulong> [#uses=1]
        ret ulong %tmp2
}