mirror of
https://github.com/opnsense/src.git
synced 2026-04-10 03:46:58 -04:00
14 lines
332 B
LLVM
14 lines
332 B
LLVM
; 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
|
|
}
|
|
|