[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / coal-sections.ll
blob3fed158befdd8f06e210b09f36286bf57b678505
1 ; RUN: llc < %s -mtriple x86_64-apple-darwin | FileCheck %s
3 ; Check that *coal* sections are not emitted.
5 ; CHECK: .section  __TEXT,__text,regular,pure_instructions{{$}}
6 ; CHECK-NEXT: .globl  _foo
8 ; CHECK: .section  __TEXT,__const{{$}}
9 ; CHECK-NEXT: .globl  _a
11 ; CHECK: .section  __DATA,__data{{$}}
12 ; CHECK-NEXT: .globl  _b
14 @a = weak_odr constant [4 x i32] [i32 1, i32 2, i32 3, i32 4], align 16
15 @b = weak global i32 5, align 4
16 @g = common global ptr null, align 8
18 ; Function Attrs: nounwind ssp uwtable
19 define weak ptr @foo() {
20 entry:
21   store ptr @a, ptr @g, align 8
22   ret ptr @b