summaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/sink_instruction.ll
blob: cb8a090e5a07f37cf2ed1e708fa4895f33d380f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
; RUN:   %prcontext div 1 | grep ret

;; This tests that the instructions in the entry blocks are sunk into each
;; arm of the 'if'.

define i32 @foo(i1 %C, i32 %A, i32 %B) {
entry:
        %tmp.2 = sdiv i32 %A, %B                ; <i32> [#uses=1]
        %tmp.9 = add i32 %B, %A         ; <i32> [#uses=1]
        br i1 %C, label %then, label %endif

then:           ; preds = %entry
        ret i32 %tmp.9

endif:          ; preds = %entry
        ret i32 %tmp.2
}

OpenPOWER on IntegriCloud