Make test more interesting by adding dummy phi node
authorChris Lattner <sabre@nondot.org>
Tue, 8 Oct 2002 19:11:02 +0000 (19:11 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 8 Oct 2002 19:11:02 +0000 (19:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4072 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/CorrelatedExprs/2002-10-07-DominatorProblem.ll

index c5f52aa44089377ffd437cc8e9cbaeabd4c24ea9..70f879bfd2aadf577c2bec5aa1e2288856545921 100644 (file)
@@ -19,7 +19,8 @@ Loop:        ;; Merge point, nothing is known here...
        br bool %c2, label %Forwarded, label %Bottom
 
 Forwarded:
-       call int %test(int 0, int %Z, bool true)
+       %Z2 = phi int [%Z, %Loop]
+       call int %test(int 0, int %Z2, bool true)
        br label %Bottom
 
 Bottom: