diff options
Diffstat (limited to 'llvm/test/MC/Hexagon/inst_cmp_eq.ll')
-rw-r--r-- | llvm/test/MC/Hexagon/inst_cmp_eq.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/MC/Hexagon/inst_cmp_eq.ll b/llvm/test/MC/Hexagon/inst_cmp_eq.ll new file mode 100644 index 00000000000..11a06a4df17 --- /dev/null +++ b/llvm/test/MC/Hexagon/inst_cmp_eq.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, i32 %b) +{ + %1 = icmp eq i32 %a, %b + ret i1 %1 +} + +; CHECK: 0000 004100f2 00400000 00c09f52
\ No newline at end of file |