Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

17 lines
360 B
LLVM

; RUN: opt < %s -inline -functionattrs -reassociate -S | FileCheck %s
; CHECK-NOT: func1
; CHECK-LABEL: main
; CHECK-NEXT: ret void
define internal i16 @func1() noinline #0 {
ret i16 0
}
define void @main(i16 %argc, i16** %argv) #0 {
%_tmp0 = call i16 @func1()
%_tmp2 = zext i16 %_tmp0 to i32
ret void
}
attributes #0 = { minsize nounwind optsize }