From 9b0ace63648f5041cb8010d4996fe6ca7be2fcb7 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Wed, 22 Oct 2014 05:30:42 +0000 Subject: [PATCH 1/1] R600/SI: Add another failing testcase for i1 copies It's not handling phis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220371 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/R600/i1-copy-phi.ll | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/CodeGen/R600/i1-copy-phi.ll diff --git a/test/CodeGen/R600/i1-copy-phi.ll b/test/CodeGen/R600/i1-copy-phi.ll new file mode 100644 index 00000000000..d987d73b521 --- /dev/null +++ b/test/CodeGen/R600/i1-copy-phi.ll @@ -0,0 +1,21 @@ +; XFAIL: * +; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s + +define void @br_i1_phi(i32 %arg, i1 %arg1) #0 { +bb: + br i1 %arg1, label %bb2, label %bb3 + +bb2: ; preds = %bb + br label %bb3 + +bb3: ; preds = %bb2, %bb + %tmp = phi i1 [ true, %bb2 ], [ false, %bb ] + br i1 %tmp, label %bb4, label %bb6 + +bb4: ; preds = %bb3 + %tmp5 = mul i32 undef, %arg + br label %bb6 + +bb6: ; preds = %bb4, %bb3 + ret void +} -- 2.34.1