1; RUN: not llvm-as < %s 2>&1 | FileCheck %s 2 3; CHECK: error: phi node must have first class type 4 5define void @test() { 6entry: 7 ret void 8 9bb: 10 %phi = phi void () 11 ret void 12} 13