summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/extsh.ll
blob: 0f4f512a25ed3b233c0e28468a6aca6782f310ee (plain)
1
2
3
4
5
6
7
; This should turn into a single extsh
; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep extsh | wc -l | grep 1
int %test(int %X) {
        %tmp.81 = shl int %X, ubyte 16             ; <int> [#uses=1]
        %tmp.82 = shr int %tmp.81, ubyte 16             ; <int> [#uses=1]
        ret int %tmp.82
}