[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / select-1-or-neg1.ll
blob9a4cb55e52bd9296d48d0de1eecbd4cac9d5fcb7
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown                      | FileCheck %s --check-prefix=BASE
3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=slow-3ops-lea | FileCheck %s --check-prefix=SLOWLEA3
5 ; TODO: Should the 'cmpl' be 'dec' instead?
6 ; TODO: What if 'cmov' is 1 uop and full throughput (Ryzen)?
8 define i32 @PR28968(i32 %x) {
9 ; BASE-LABEL: PR28968:
10 ; BASE:       # %bb.0:
11 ; BASE-NEXT:    xorl %eax, %eax
12 ; BASE-NEXT:    cmpl $1, %edi
13 ; BASE-NEXT:    sete %al
14 ; BASE-NEXT:    leal -1(%rax,%rax), %eax
15 ; BASE-NEXT:    retq
17 ; SLOWLEA3-LABEL: PR28968:
18 ; SLOWLEA3:       # %bb.0:
19 ; SLOWLEA3-NEXT:    xorl %eax, %eax
20 ; SLOWLEA3-NEXT:    cmpl $1, %edi
21 ; SLOWLEA3-NEXT:    sete %al
22 ; SLOWLEA3-NEXT:    leal -1(,%rax,2), %eax
23 ; SLOWLEA3-NEXT:    retq
24   %cmp = icmp eq i32 %x, 1
25   %sel = select i1 %cmp, i32 1, i32 -1
26   ret i32 %sel