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/Isl/single_loop_param_less_equal.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/Isl/single_loop_param_less_equal.ll')
-rw-r--r-- | polly/test/Isl/single_loop_param_less_equal.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/Isl/single_loop_param_less_equal.ll b/polly/test/Isl/single_loop_param_less_equal.ll index 831350ddfba..6e383fc404f 100644 --- a/polly/test/Isl/single_loop_param_less_equal.ll +++ b/polly/test/Isl/single_loop_param_less_equal.ll @@ -14,7 +14,7 @@ start: loop.header: %i = phi i64 [ 0, %start ], [ %i.next, %loop.backedge ] - %scevgep = getelementptr [1024 x i32]* @A, i64 0, i64 %i + %scevgep = getelementptr [1024 x i32], [1024 x i32]* @A, i64 0, i64 %i %exitcond = icmp ne i64 %i, %n_plus_one br i1 %exitcond, label %loop.body, label %ret @@ -49,7 +49,7 @@ ret: ; CODEGEN: br label %polly.stmt.loop.body ; CODEGEN: polly.stmt.loop.body: -; CODEGEN: [[PTR:%[a-zA-Z0-9_\.]+]] = getelementptr [1024 x i32]* @A, i64 0, i64 %polly.indvar +; CODEGEN: [[PTR:%[a-zA-Z0-9_\.]+]] = getelementptr [1024 x i32], [1024 x i32]* @A, i64 0, i64 %polly.indvar ; CODEGEN: store i32 1, i32* [[PTR]] ; CODEGEN: %polly.indvar_next = add nsw i64 %polly.indvar, 1 ; CODEGEN: %polly.adjust_ub = sub i64 %n, 1 |