[tests] Cleanup initialization of test suffixes.
[oota-llvm.git] / test / Transforms / InstSimplify / vector_gep.ll
1 ;RUN: opt -instsimplify -disable-output < %s
2 declare void @helper(<2 x i8*>)
3 define void @test(<2 x i8*> %a) {
4   %A = getelementptr <2 x i8*> %a, <2 x i32> <i32 0, i32 0>
5   call void @helper(<2 x i8*> %A)
6   ret void
7 }
8