summaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/inline_constprop.ll
blob: 537c69b305cbd0f9cc2dbec1046fbb251e47e414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: opt < %s -inline -S | not grep callee
; RUN: opt < %s -inline -S | not grep div


define internal i32 @callee(i32 %A, i32 %B) {
        %C = sdiv i32 %A, %B            ; <i32> [#uses=1]
        ret i32 %C
}

define i32 @test() {
        %X = call i32 @callee( i32 10, i32 3 )          ; <i32> [#uses=1]
        ret i32 %X
}

OpenPOWER on IntegriCloud