aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Hexagon/compound.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Hexagon/compound.ll')
-rw-r--r--test/CodeGen/Hexagon/compound.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/Hexagon/compound.ll b/test/CodeGen/Hexagon/compound.ll
new file mode 100644
index 000000000000..f8d36b8b77d9
--- /dev/null
+++ b/test/CodeGen/Hexagon/compound.ll
@@ -0,0 +1,17 @@
+; RUN: llc -march=hexagon -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s
+
+; CHECK: p0 = cmp.gt(r0,#-1); if (!p0.new) jump:nt
+
+declare void @a()
+declare void @b()
+
+define void @foo(i32 %a) {
+%b = icmp sgt i32 %a, -1
+br i1 %b, label %x, label %y
+x:
+call void @a()
+ret void
+y:
+call void @b()
+ret void
+} \ No newline at end of file