mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
54c69d097e
As mentioned in http://lists.llvm.org/pipermail/llvm-dev/2020-July/143395.html, loop-unswitch has not been ported to the NPM. Instead people are using simple-loop-unswitch. Pin all tests in Transforms/LoopUnswitch to legacy PM and replace all other uses of loop-unswitch with simple-loop-unswitch. One test that didn't fit into the above was 2014-06-21-congruent-constant.ll which seems to only pass with loop-unswitch. That is also pinned to legacy PM. Now all tests containing "-loop-unswitch" anywhere in the test succeed with NPM turned on by default. Reviewed By: ychen Differential Revision: https://reviews.llvm.org/D85360
58 lines
2.2 KiB
LLVM
58 lines
2.2 KiB
LLVM
; RUN: opt -S -loop-unswitch -instcombine -indvars -enable-new-pm=0 < %s | FileCheck %s
|
|
|
|
; This used to crash in SCEVExpander when there were congruent phis with and
|
|
; undef incoming value from the loop header. The -loop-unswitch -instcombine is
|
|
; necessary to create just this pattern, which is essentially a nop and gets
|
|
; folded away aggressively if spelled out in IR directly.
|
|
; PR 20093
|
|
|
|
@c = external global i32**, align 8
|
|
|
|
define void @test1() {
|
|
entry:
|
|
br i1 undef, label %for.end12, label %for.cond.preheader
|
|
|
|
for.cond.preheader: ; preds = %entry
|
|
%0 = load i32**, i32*** @c, align 8
|
|
%1 = load i32*, i32** %0, align 8
|
|
%2 = load i32, i32* %1, align 4
|
|
br label %for.body
|
|
|
|
for.body: ; preds = %for.cond.backedge, %for.body9.us, %for.cond.preheader
|
|
%3 = phi i32* [ %1, %for.cond.preheader ], [ %3, %for.cond.backedge ], [ %6, %for.body9.us ]
|
|
%4 = phi i32 [ %2, %for.cond.preheader ], [ undef, %for.cond.backedge ], [ %7, %for.body9.us ]
|
|
%i.024 = phi i32 [ 0, %for.cond.preheader ], [ %inc, %for.cond.backedge ], [ 0, %for.body9.us ]
|
|
%tobool1 = icmp eq i32 %4, 0
|
|
br i1 %tobool1, label %if.end, label %for.cond.backedge
|
|
|
|
if.end: ; preds = %for.body
|
|
%5 = load i32, i32* %3, align 4
|
|
%tobool4 = icmp eq i32 %5, 0
|
|
br i1 %tobool4, label %for.cond3, label %for.body9.preheader
|
|
|
|
for.body9.preheader: ; preds = %if.end
|
|
%tobool8 = icmp eq i32 %i.024, 1
|
|
br i1 %tobool8, label %for.body9.us, label %for.body9
|
|
|
|
for.body9.us: ; preds = %for.body9.preheader
|
|
%6 = load i32*, i32** undef, align 8
|
|
%7 = load i32, i32* %6, align 4
|
|
br label %for.body
|
|
|
|
for.cond3: ; preds = %for.cond3, %if.end
|
|
br label %for.cond3
|
|
|
|
for.body9: ; preds = %for.body9, %for.body9.preheader
|
|
br label %for.body9
|
|
|
|
for.cond.backedge: ; preds = %for.body
|
|
%inc = add nsw i32 %i.024, 1
|
|
br i1 false, label %for.body, label %for.end12
|
|
|
|
for.end12: ; preds = %for.cond.backedge, %entry
|
|
ret void
|
|
|
|
; CHECK-LABEL: @test1
|
|
; CHECK-NOT: phi
|
|
}
|