10 lines · plain
1; RUN: not llvm-as < %s 2>&1 | FileCheck %s2; CHECK: multiple entries for the same basic block3 4define i32 @test(i32 %i, i32 %j, i1 %c) {5 br i1 %c, label %A, label %A6A:7 %a = phi i32 [%i, %0], [%j, %0] ; Error, different values from same block!8 ret i32 %a9}10