brintos

brintos / llvm-project-archived public Read only

0
0
Text · 169 B · fa176e2 Raw
11 lines · plain
1; RUN: not llvm-as < %s > /dev/null 2>&12 3declare void @foo(ptr)4 5define void @bar() {6	invoke void @foo(ptr signext null)7			to label %r unwind label %r8r:9	ret void10}11