summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Blackfin/simple-select.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Blackfin/simple-select.ll')
-rw-r--r--test/CodeGen/Blackfin/simple-select.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/Blackfin/simple-select.ll b/test/CodeGen/Blackfin/simple-select.ll
new file mode 100644
index 0000000..0f7f270
--- /dev/null
+++ b/test/CodeGen/Blackfin/simple-select.ll
@@ -0,0 +1,11 @@
+; RUN: llc < %s -march=bfin -verify-machineinstrs > %t
+
+declare i1 @foo()
+
+define i32 @test(i32* %A, i32* %B) {
+ %a = load i32* %A
+ %b = load i32* %B
+ %cond = call i1 @foo()
+ %c = select i1 %cond, i32 %a, i32 %b
+ ret i32 %c
+}
OpenPOWER on IntegriCloud