aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2002-08-02-CastTest.ll
blob: 7599d7669ea0011ca63a3ce1e0a4579c088d0769 (plain)
1
2
3
4
5
6
7
8
9
10
; This testcase is incorrectly getting completely eliminated.  There should be
; SOME instruction named %c here, even if it's a bitwise and.
;
; RUN: as < %s | opt -instcombine -dce | grep '%c'
ulong %test3(ulong %A) {
        %c1 = cast ulong %A to ubyte            ; <ubyte> [#uses=0]
        %c2 = cast ulong %A to ulong            ; <ulong> [#uses=0]
        ret ulong %A
}