brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · b14b8c4 Raw
13 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2 3; CHECK: error: phi node must have first class type4 5define void @test() {6entry:7  ret void8 9bb:10  %phi = phi void ()11  ret void12}13