Use the new PM syntax when specifying the pipeline in regression tests previously running "opt -newgvn ..." Instead we now do "opt -passes=newgvn ..." Notice that this also changes the aa-pipeline to become the default aa-pipeline instead of just basic-aa. Since these tests haven't been explicitly requesting basic-aa in the past (compared to the test cases updated in a separate patch involving "-basic-aa -newgvn") it is assumed that the exact aa-pipeline isn't important for the validity of the test cases. An alternative could have been to add -aa-pipeline=basic-aa as well to the run lines, but that might just add clutter in case the test cases do not care about the aa-pipeline. This is another step to move away from the legacy PM syntax when specifying passes in opt. Differential Revision: https://reviews.llvm.org/D118341
39 lines
667 B
LLVM
39 lines
667 B
LLVM
; RUN: opt -passes=newgvn -S -o - %s | FileCheck %s
|
|
|
|
; If a branch has two identical successors, we cannot declare either dead.
|
|
|
|
define void @widget(i1 %p) {
|
|
entry:
|
|
br label %bb2
|
|
|
|
bb2:
|
|
%t1 = phi i64 [ 0, %entry ], [ %t5, %bb7 ]
|
|
%t2 = add i64 %t1, 1
|
|
%t3 = icmp ult i64 0, %t2
|
|
br i1 %t3, label %bb3, label %bb4
|
|
|
|
bb3:
|
|
%t4 = call i64 @f()
|
|
br label %bb4
|
|
|
|
bb4:
|
|
; CHECK-NOT: phi {{.*}} undef
|
|
%foo = phi i64 [ %t4, %bb3 ], [ 0, %bb2 ]
|
|
br i1 %p, label %bb5, label %bb6
|
|
|
|
bb5:
|
|
br i1 true, label %bb7, label %bb7
|
|
|
|
bb6:
|
|
br i1 true, label %bb7, label %bb7
|
|
|
|
bb7:
|
|
%t5 = add i64 %t1, 1
|
|
br i1 %p, label %bb2, label %bb8
|
|
|
|
bb8:
|
|
ret void
|
|
}
|
|
|
|
declare i64 @f()
|