• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -instcombine -S | not grep call
2; rdar://6880732
3declare double @t1(i32) readonly
4
5define void @t2() nounwind {
6  call double @t1(i32 42)  ;; dead call even though callee is not nothrow.
7  ret void
8}
9