11 lines · plain
1; RUN: not llvm-as < %s >/dev/null 2> %t2; RUN: FileCheck %s < %t3; Test that a vector GEP may be used with a scalar base, the result is a vector of pointers4 5; CHECK: '%w' defined with type '<2 x ptr>'6 7define <4 x i32> @test(ptr %a) {8 %w = getelementptr <4 x i32>, ptr %a, <2 x i32> <i32 5, i32 9>9 ret i32 %w10}11