[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / X86 / visibility2.ll
blob6a403b0b1ba5728fbc3d4f2f1a51d0f035eefe49
1 ; This test case ensures that when the visibility of a global declaration is 
2 ; emitted they are not treated as definitions.  Test case for r132825.
3 ; Fixes <rdar://problem/9429892>.
5 ; RUN: llc -mtriple=x86_64-apple-darwin %s -o - | FileCheck %s
7 @foo_private_extern_str = external hidden global ptr
9 define void @foo1() nounwind ssp {
10 entry:
11   %tmp = load ptr, ptr @foo_private_extern_str, align 8
12   call void @foo3(ptr %tmp)
13   ret void
16 declare void @foo3(ptr)
18 ; CHECK-NOT: .private_extern