diff options
Diffstat (limited to 'test/Transforms/MergeFunc/vector-GEP-crash.ll')
-rw-r--r-- | test/Transforms/MergeFunc/vector-GEP-crash.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/MergeFunc/vector-GEP-crash.ll b/test/Transforms/MergeFunc/vector-GEP-crash.ll index a1eefa0..d0e86eb 100644 --- a/test/Transforms/MergeFunc/vector-GEP-crash.ll +++ b/test/Transforms/MergeFunc/vector-GEP-crash.ll @@ -2,11 +2,11 @@ ; This used to cause a crash when compairing the GEPs define void @foo(<2 x i64*>) { - %tmp = getelementptr <2 x i64*> %0, <2 x i64> <i64 0, i64 0> + %tmp = getelementptr i64, <2 x i64*> %0, <2 x i64> <i64 0, i64 0> ret void } define void @bar(<2 x i64*>) { - %tmp = getelementptr <2 x i64*> %0, <2 x i64> <i64 0, i64 0> + %tmp = getelementptr i64, <2 x i64*> %0, <2 x i64> <i64 0, i64 0> ret void } |