diff --git a/llvm/test/CodeGen/LoongArch/legalicmpimm.ll b/llvm/test/CodeGen/LoongArch/legalicmpimm.ll new file mode 100644 --- /dev/null +++ b/llvm/test/CodeGen/LoongArch/legalicmpimm.ll @@ -0,0 +1,28 @@ +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc --mtriple=loongarch32 < %s | FileCheck %s --check-prefix=LA32 +; RUN: llc --mtriple=loongarch64 < %s | FileCheck %s --check-prefix=LA64 + +define i32 @icmpimm(i32 %x) { +; LA32-LABEL: icmpimm: +; LA32: # %bb.0: +; LA32-NEXT: lu12i.w $a1, -1 +; LA32-NEXT: and $a0, $a0, $a1 +; LA32-NEXT: lu12i.w $a1, 1 +; LA32-NEXT: xor $a0, $a0, $a1 +; LA32-NEXT: sltui $a0, $a0, 1 +; LA32-NEXT: ret +; +; LA64-LABEL: icmpimm: +; LA64: # %bb.0: +; LA64-NEXT: lu12i.w $a1, -1 +; LA64-NEXT: lu32i.d $a1, 0 +; LA64-NEXT: and $a0, $a0, $a1 +; LA64-NEXT: lu12i.w $a1, 1 +; LA64-NEXT: xor $a0, $a0, $a1 +; LA64-NEXT: sltui $a0, $a0, 1 +; LA64-NEXT: ret + %1 = and i32 %x, -4096 + %2 = icmp eq i32 %1, 4096 + %3 = zext i1 %2 to i32 + ret i32 %3 +}