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