
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
13 lines
303 B
LLVM
13 lines
303 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -passes=sccp -S | FileCheck %s
|
|
|
|
define i1 @foo() {
|
|
; CHECK-LABEL: @foo(
|
|
; CHECK-NEXT: [[X:%.*]] = and i1 false, undef
|
|
; CHECK-NEXT: ret i1 [[X]]
|
|
;
|
|
%X = and i1 false, undef ; <i1> [#uses=1]
|
|
ret i1 %X
|
|
}
|
|
|