brintos

brintos / llvm-project-archived public Read only

0
0
Text · 259 B · 92a51d7 Raw
17 lines · plain
1; RUN: not llvm-as < %s > /dev/null 2>&12 3declare i32 @v()4 5define i32 @g() {6e:7	%s = invoke i32 @v()8			to label %c unwind label %u		; <i32> [#uses=2]9 10c:		; preds = %e11	ret i32 %s12 13u:		; preds = %e14	%t = phi i32 [ %s, %e ]		; <i32> [#uses=1]15	ret i32 %t16}17