summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2005-04-07-UDivSelectCrash.ll
blob: bed4c9e457d6b59b4564f83e9cfc5012c9e8a1e4 (plain)
1
2
3
4
5
6
7
8
; RUN: opt %s -instcombine -disable-output

define i32 @test(i1 %C, i32 %tmp.15) {
        %tmp.16 = select i1 %C, i32 8, i32 1            ; <i32> [#uses=1]
        %tmp.18 = udiv i32 %tmp.15, %tmp.16             ; <i32> [#uses=1]
        ret i32 %tmp.18
}