diff options
Diffstat (limited to 'test/CodeGen/X86/osx-private-labels.ll')
-rw-r--r-- | test/CodeGen/X86/osx-private-labels.ll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/X86/osx-private-labels.ll b/test/CodeGen/X86/osx-private-labels.ll index 349ce7d0cc5e..e30cb4824aa7 100644 --- a/test/CodeGen/X86/osx-private-labels.ll +++ b/test/CodeGen/X86/osx-private-labels.ll @@ -69,3 +69,20 @@ ; CHECK: .section __DATA,__foobar,interposing ; CHECK-NEXT: .align 3 ; CHECK-NEXT: L_private12: + +@private13 = private global i32 42, section "__DATA, __objc_classlist, regular, no_dead_strip" +; CHECK: .section __DATA,__objc_classlist,regular,no_dead_strip +; CHECK-NEXT: .align 2 +; CHECK-NEXT: L_private13: + +@private14 = private global [4 x i8] c"zed\00", section "__TEXT,__objc_classname,cstring_literals" +; CHECK: .section __TEXT,__objc_classname,cstring_literals +; CHECK-NEXT: L_private14: + +@private15 = private global [4 x i8] c"zed\00", section "__TEXT,__objc_methname,cstring_literals" +; CHECK: .section __TEXT,__objc_methname,cstring_literals +; CHECK-NEXT: L_private15: + +@private16 = private global [4 x i8] c"zed\00", section "__TEXT,__objc_methtype,cstring_literals" +; CHECK: .section __TEXT,__objc_methtype,cstring_literals +; CHECK-NEXT: L_private16: |