brintos

brintos / llvm-project-archived public Read only

0
0
Text · 153 B · 7478334 Raw
10 lines · plain
1; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s2; CHECK: invalid type for alloca3; PR21134 5define void @test() {6	%A = alloca void()7	ret void8}9 10