[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / AArch64 / macho-global-symbols.ll
blobd68abad57ccd66f0efaa8aaa4b809d9cd4e0a2de
1 ; RUN: llc -mtriple=arm64-apple-ios %s -o - | FileCheck %s
3 ; All global symbols must be at-most linker-private for AArch64 because we don't
4 ; use section-relative relocations in MachO.
6 define i8* @private_sym() {
7 ; CHECK-LABEL: private_sym:
8 ; CHECK:     adrp [[HIBITS:x[0-9]+]], l_var@PAGE
9 ; CHECK:     add x0, [[HIBITS]], l_var@PAGEOFF
11   ret i8* getelementptr([2 x i8], [2 x i8]* @var, i32 0, i32 0)
14 ; CHECK:     .section __TEXT,__cstring
15 ; CHECK: l_var:
16 ; CHECK:    .asciz "\002"
17 @var = private unnamed_addr constant [2 x i8] [i8 2, i8 0]