Files
clang-p2996/llvm/test/Transforms/SCCP/apint-ipsccp2.ll
Bjorn Pettersson 8ebb3eac02 [test] Use -passes syntax when specifying pipeline in some more tests
The legacy PM is deprecated, so update a bunch of lit tests running
opt to use the new PM syntax when specifying the pipeline.
In this patch focus has been put on test cases for ConstantMerge,
ConstraintElimination, CorrelatedValuePropagation, GlobalDCE,
GlobalOpt, SCCP, TailCallElim and PredicateInfo.

Differential Revision: https://reviews.llvm.org/D114516
2021-11-27 09:52:55 +01:00

20 lines
381 B
LLVM

; RUN: opt < %s -passes=ipsccp -S | grep -v "ret i101 0" | \
; RUN: grep -v "ret i101 undef" | not grep ret
define internal i101 @bar(i101 %A) {
%x = icmp eq i101 %A, 0
br i1 %x, label %T, label %F
T:
%B = call i101 @bar(i101 0)
ret i101 0
F: ; unreachable
%C = call i101 @bar(i101 1)
ret i101 %C
}
define i101 @foo() {
%X = call i101 @bar(i101 0)
ret i101 %X
}