diff options
Diffstat (limited to 'llvm/test/MC')
-rw-r--r-- | llvm/test/MC/Hexagon/inst_cmp_eqi.ll | 10 | ||||
-rw-r--r-- | llvm/test/MC/Hexagon/inst_cmp_gti.ll | 10 | ||||
-rw-r--r-- | llvm/test/MC/Hexagon/inst_cmp_ugti.ll | 10 |
3 files changed, 30 insertions, 0 deletions
diff --git a/llvm/test/MC/Hexagon/inst_cmp_eqi.ll b/llvm/test/MC/Hexagon/inst_cmp_eqi.ll new file mode 100644 index 00000000000..78c92902350 --- /dev/null +++ b/llvm/test/MC/Hexagon/inst_cmp_eqi.ll @@ -0,0 +1,10 @@ +;; RUN: llc -mtriple=hexagon-unknown-elf -filetype=obj %s -o - \ +;; RUN: | llvm-objdump -s - | FileCheck %s + +define i1 @foo (i32 %a) +{ + %1 = icmp eq i32 %a, 42 + ret i1 %1 +} + +; CHECK: 0000 40450075 00400000 00c09f52 diff --git a/llvm/test/MC/Hexagon/inst_cmp_gti.ll b/llvm/test/MC/Hexagon/inst_cmp_gti.ll new file mode 100644 index 00000000000..36828cc4209 --- /dev/null +++ b/llvm/test/MC/Hexagon/inst_cmp_gti.ll @@ -0,0 +1,10 @@ +;; RUN: llc -mtriple=hexagon-unknown-elf -filetype=obj %s -o - \ +;; RUN: | llvm-objdump -s - | FileCheck %s + +define i1 @foo (i32 %a) +{ + %1 = icmp sgt i32 %a, 42 + ret i1 %1 +} + +; CHECK: 0000 40454075 00400000 00c09f52 diff --git a/llvm/test/MC/Hexagon/inst_cmp_ugti.ll b/llvm/test/MC/Hexagon/inst_cmp_ugti.ll new file mode 100644 index 00000000000..459b5bf77d3 --- /dev/null +++ b/llvm/test/MC/Hexagon/inst_cmp_ugti.ll @@ -0,0 +1,10 @@ +;; RUN: llc -mtriple=hexagon-unknown-elf -filetype=obj %s -o - \ +;; RUN: | llvm-objdump -s - | FileCheck %s + +define i1 @foo (i32 %a) +{ + %1 = icmp ugt i32 %a, 42 + ret i1 %1 +} + +; CHECK: 0000 40458075 00400000 00c09f52 |