X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FVerifier%2FAmbiguousPhi.ll;h=9a72530187752a44f0ef30c5bca5658d900557d7;hb=6fa1c051dc515b6fd1f9a26ac12fed985469bff5;hp=f64ec3fd77e42f155033f5267b578a2408328b77;hpb=2393a24fedc98dd62c9f338d0f08e367a4929369;p=oota-llvm.git diff --git a/test/Verifier/AmbiguousPhi.ll b/test/Verifier/AmbiguousPhi.ll index f64ec3fd77e..9a725301877 100644 --- a/test/Verifier/AmbiguousPhi.ll +++ b/test/Verifier/AmbiguousPhi.ll @@ -1,10 +1,10 @@ -; RUN: not llvm-as -f %s -o /dev/null +; RUN: not llvm-as < %s |& grep {multiple entries for the same basic block} -int "test"(int %i, int %j, bool %c) { - br bool %c, label %A, label %A +define i32 @test(i32 %i, i32 %j, i1 %c) { + br i1 %c, label %A, label %A A: - %a = phi int [%i, %0], [%j, %0] ; Error, different values from same block! - ret int %a + %a = phi i32 [%i, %0], [%j, %0] ; Error, different values from same block! + ret i32 %a }