11 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2; CHECK: invalid getelementptr indices3 4; This testcase is invalid because we are indexing into a pointer that is 5; contained WITHIN a structure.6 7define void @test(ptr %X) {8 getelementptr {i32, ptr}, ptr %X, i32 0, i32 1, i32 09 ret void10}11