brintos

brintos / llvm-project-archived public Read only

0
0
Text · 193 B · df20dc9 Raw
8 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2; CHECK: <stdin>:4:26: error: expected comma after getelementptr's type3define void @test(ptr %t) {4  %x = getelementptr ptr %t, i32 05  ret void6}7 8