From 8016f3a4f5d5fd009a5c91d7d66eb6db3942daac Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Fri, 25 Sep 2015 05:41:30 +0000 Subject: [PATCH] Add missing PHI to test case llvm-svn: 248563 --- polly/test/ScopInfo/read-only-scalar-used-in-phi.ll | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/polly/test/ScopInfo/read-only-scalar-used-in-phi.ll b/polly/test/ScopInfo/read-only-scalar-used-in-phi.ll index b2840d2228dc..db1d1d56a2f0 100644 --- a/polly/test/ScopInfo/read-only-scalar-used-in-phi.ll +++ b/polly/test/ScopInfo/read-only-scalar-used-in-phi.ll @@ -52,5 +52,6 @@ bb1: br i1 %exitcond, label %bb1, label %bb7 bb7: - ret float %phisum + %phisummerge = phi float [%phisum, %bb1], [0.0, %next] + ret float %phisummerge }