Files
clang-p2996/llvm/test/Transforms/InstCombine/nothrow.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

9 lines
234 B
LLVM

; RUN: opt < %s -passes=instcombine -S | not grep call
; rdar://6880732
declare double @t1(i32) readonly willreturn
define void @t2() nounwind {
call double @t1(i32 42) ;; dead call even though callee is not nothrow.
ret void
}