[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / codegen-prepare-replacephi.mir
blobaceb344d8b76cf58a6d2289a5647ef81ff301cf4
1 # RUN: llc -run-pass=codegenprepare -o - %s | FileCheck %s
3 # REQUIRES: default_triple
5 # This testcase without the accompanying fix triggers the assert
6 # "Replacement PHI node is already replaced."
8 --- |
9   define void @f1() {
10   entry:
11     %arrayidx = getelementptr inbounds [2 x i16], ptr undef, i16 0, i16 2
12     br label %for.cond
14   for.cond:
15     %0 = phi ptr [ %arrayidx, %entry ], [ %5, %cleanup ]
16     %1 = phi ptr [ %arrayidx, %entry ], [ %7, %cleanup ]
17     br label %for.body
19   for.body:
20     %2 = phi ptr [ %1, %for.cond ], [ %7, %cleanup ]
21     %3 = phi ptr [ %0, %for.cond ], [ %7, %cleanup ]
22     %4 = phi ptr [ %0, %for.cond ], [ %7, %cleanup ]
23     br i1 false, label %for.cond2, label %if.then
25   if.then:
26     store i32 undef, ptr %2, align 1
27     unreachable
29   for.cond2:
30     %5 = phi ptr [ %4, %for.body ], [ %5, %if.then5 ], [ undef, %for.cond2 ]
31     %6 = phi ptr [ %3, %for.body ], [ %6, %if.then5 ], [ undef, %for.cond2 ]
32     %7 = phi ptr [ %2, %for.body ], [ %6, %if.then5 ], [ undef, %for.cond2 ]
33     br i1 undef, label %for.cond2, label %if.then5
35   if.then5:
36     br i1 undef, label %cleanup, label %for.cond2
38   cleanup:
39     br i1 true, label %for.cond, label %for.body
40   }
42 ...
44 # A check to verify that something got through.
45 # CHECK-LABEL: entry: