diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-02-27 19:20:19 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-02-27 19:20:19 +0000 |
commit | bad3ff207f68e69f36b9a1f90a29f22341e505bb (patch) | |
tree | d97ff485a8abb3f3e161417419b2f24fdce66b29 /polly/test/ScopInfo/multidim_nested_start_share_parameter.ll | |
parent | 218b78319277e27d8f283c85369f968ab580015b (diff) | |
download | bcm5719-llvm-bad3ff207f68e69f36b9a1f90a29f22341e505bb.tar.gz bcm5719-llvm-bad3ff207f68e69f36b9a1f90a29f22341e505bb.zip |
Update Polly tests to handle explicitly typed gep changes in LLVM
llvm-svn: 230784
Diffstat (limited to 'polly/test/ScopInfo/multidim_nested_start_share_parameter.ll')
-rw-r--r-- | polly/test/ScopInfo/multidim_nested_start_share_parameter.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/ScopInfo/multidim_nested_start_share_parameter.ll b/polly/test/ScopInfo/multidim_nested_start_share_parameter.ll index 93bf94560c6..ce896f6ad3d 100644 --- a/polly/test/ScopInfo/multidim_nested_start_share_parameter.ll +++ b/polly/test/ScopInfo/multidim_nested_start_share_parameter.ll @@ -44,7 +44,7 @@ for.k: %subscript2 = mul i64 %subscript1, %o %offset2 = add nsw i64 %k, 7 %subscript3 = add i64 %subscript2, %offset2 - %idx = getelementptr inbounds double* %A, i64 %subscript3 + %idx = getelementptr inbounds double, double* %A, i64 %subscript3 store double 1.0, double* %idx %offset3 = add nsw i64 %i, 13 @@ -54,7 +54,7 @@ for.k: %subscript6 = mul i64 %subscript5, %o %offset5 = add nsw i64 %k, 17 %subscript7 = add i64 %subscript6, %offset5 - %idx1 = getelementptr inbounds double* %A, i64 %subscript7 + %idx1 = getelementptr inbounds double, double* %A, i64 %subscript7 store double 11.0, double* %idx1 br label %for.k.inc |