19 lines · plain
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>.4;5; RUN: llc -mtriple=x86_64-apple-darwin %s -o - | FileCheck %s6 7@foo_private_extern_str = external hidden global ptr8 9define void @foo1() nounwind ssp {10entry:11 %tmp = load ptr, ptr @foo_private_extern_str, align 812 call void @foo3(ptr %tmp)13 ret void14}15 16declare void @foo3(ptr)17 18; CHECK-NOT: .private_extern19