2009-09-11 20:01:28 +02:00
|
|
|
; RUN: opt < %s -instcombine -S | not grep call
|
2009-05-13 19:39:14 +02:00
|
|
|
; rdar://6880732
|
|
|
|
declare double @t1(i32) readonly
|
|
|
|
|
|
|
|
define void @t2() nounwind {
|
|
|
|
call double @t1(i32 42) ;; dead call even though callee is not nothrow.
|
|
|
|
ret void
|
|
|
|
}
|