blob: c4fab0fc3f42168d6031df1a39c3da858b90ac32 [file] [log] [blame]
; RUN: opt < %s -passes=inline -S | FileCheck %s
; InlineCost used to have problems with the ptrtoint, leading to
; crashes when visiting the trunc in pr47969_help and the icmp in
; pr38500_help.
target datalayout = "p:16:16"
target triple = "x86_64-unknown-linux-gnu"
define void @pr47969_help(ptr %p) {
%cast = ptrtoint ptr %p to i32
%sub = sub i32 %cast, %cast
%conv = trunc i32 %sub to i16
ret void
}
define void @pr47969(ptr %x) {
call void @pr47969_help(ptr %x)
ret void
}
; CHECK-LABEL: @pr47969(ptr %x)
; CHECK-NOT: call
; CHECK: ret void
define void @pr38500_help(ptr %p) {
%cast = ptrtoint ptr %p to i32
%sub = sub i32 %cast, %cast
%cmp = icmp eq i32 %sub, 0
ret void
}
define void @pr38500(ptr %x) {
call void @pr38500_help(ptr %x)
ret void
}
; CHECK-LABEL: @pr38500(ptr %x)
; CHECK-NOT: call
; CHECK: ret void