brintos

brintos / llvm-project-archived public Read only

0
0
Text · 304 B · 69b13b4 Raw
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 i32 @test(ptr %a) {8  %w = getelementptr i32, ptr %a, <2 x i32> <i32 5, i32 9>9  ret i32 %w10}11