1*9880d681SAndroid Build Coastguard Worker// RUN: llvm-mc -triple x86_64-apple-darwin -filetype=obj %s -o - 2>%t.err | llvm-readobj -sections | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker// RUN: FileCheck --check-prefix=WARNING < %t.err %s 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Worker// CHECK: Section { 5*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Index: 0 6*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Name: __text ( 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Worker// CHECK: Section { 9*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Index: 1 10*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Name: __textcoal_nt ( 11*9880d681SAndroid Build Coastguard Worker 12*9880d681SAndroid Build Coastguard Worker// CHECK: Section { 13*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Index: 2 14*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Name: __const_coal ( 15*9880d681SAndroid Build Coastguard Worker 16*9880d681SAndroid Build Coastguard Worker// CHECK: Section { 17*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Index: 3 18*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: Name: __datacoal_nt ( 19*9880d681SAndroid Build Coastguard Worker 20*9880d681SAndroid Build Coastguard Worker// WARNING: warning: section "__textcoal_nt" is deprecated 21*9880d681SAndroid Build Coastguard Worker// WARNING: note: change section name to "__text" 22*9880d681SAndroid Build Coastguard Worker// WARNING: warning: section "__const_coal" is deprecated 23*9880d681SAndroid Build Coastguard Worker// WARNING: note: change section name to "__const" 24*9880d681SAndroid Build Coastguard Worker// WARNING: warning: section "__datacoal_nt" is deprecated 25*9880d681SAndroid Build Coastguard Worker// WARNING: note: change section name to "__data" 26*9880d681SAndroid Build Coastguard Worker 27*9880d681SAndroid Build Coastguard Worker .section __TEXT,__textcoal_nt,coalesced,pure_instructions 28*9880d681SAndroid Build Coastguard Worker .globl _foo 29*9880d681SAndroid Build Coastguard Worker .weak_definition _foo 30*9880d681SAndroid Build Coastguard Worker .align 4, 0x90 31*9880d681SAndroid Build Coastguard Worker_foo: 32*9880d681SAndroid Build Coastguard Worker retq 33*9880d681SAndroid Build Coastguard Worker 34*9880d681SAndroid Build Coastguard Worker .section __TEXT,__const_coal,coalesced 35*9880d681SAndroid Build Coastguard Worker .globl _a ## @a 36*9880d681SAndroid Build Coastguard Worker .weak_definition _a 37*9880d681SAndroid Build Coastguard Worker .align 4 38*9880d681SAndroid Build Coastguard Worker_a: 39*9880d681SAndroid Build Coastguard Worker .long 1 ## 0x1 40*9880d681SAndroid Build Coastguard Worker 41*9880d681SAndroid Build Coastguard Worker .section __DATA,__datacoal_nt,coalesced 42*9880d681SAndroid Build Coastguard Worker .globl _b ## @b 43*9880d681SAndroid Build Coastguard Worker .weak_definition _b 44*9880d681SAndroid Build Coastguard Worker .align 2 45*9880d681SAndroid Build Coastguard Worker_b: 46*9880d681SAndroid Build Coastguard Worker .long 5 ## 0x5 47*9880d681SAndroid Build Coastguard Worker 48*9880d681SAndroid Build Coastguard Worker.subsections_via_symbols 49