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."
11 %arrayidx = getelementptr inbounds [2 x i16], ptr undef, i16 0, i16 2
15 %0 = phi ptr [ %arrayidx, %entry ], [ %5, %cleanup ]
16 %1 = phi ptr [ %arrayidx, %entry ], [ %7, %cleanup ]
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
26 store i32 undef, ptr %2, align 1
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
36 br i1 undef, label %cleanup, label %for.cond2
39 br i1 true, label %for.cond, label %for.body
44 # A check to verify that something got through.