[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / relocimm-small-model.ll
blob5c128e15c1e26c2126854a4176ffd95a6740ad23
1 ; RUN: llc < %s | FileCheck %s --check-prefix=CHECK-SMALL
2 ; RUN: llc --code-model=medium < %s | FileCheck %s --check-prefix=CHECK-MEDIUM
4 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 @a = external dso_local global i32, align 4
9 declare void @f()
11 define void @foo(i64 %b) {
12 ; CHECK-MEDIUM: cmpq  %rax, %rdi
13 ; CHECK-SMALL: cmpq $a, %rdi
14 entry:
15   %cmp = icmp eq i64 %b, ptrtoint (ptr @a to i64)
16   br i1 %cmp, label %if.then, label %if.end
18 if.then:                                          ; preds = %entry
19   tail call void @f()
20   br label %if.end
22 if.end:                                           ; preds = %if.then, %entry
23   ret void