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
18 lines
375 B
LLVM
18 lines
375 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt -S -passes=globalopt %s | FileCheck %s
|
|
|
|
@glob = external global i16, align 1
|
|
|
|
define void @beth() {
|
|
; CHECK-LABEL: @beth(
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
entry:
|
|
ret void
|
|
|
|
notreachable:
|
|
%patatino = select i1 undef, i16* @glob, i16* %patatino
|
|
br label %notreachable
|
|
}
|