[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / print-objc-manglings.m
blob1e7983ec6170ef39726dca8c37e6815e33983d6b
1 // RUN: c-index-test -write-pch %t.macho.ast -target i686-apple-darwin %s
2 // RUN: c-index-test -test-print-manglings %t.macho.ast | FileCheck --check-prefix=MACHO %s
4 // RUN: c-index-test -write-pch %t.itanium.ast -target i686-pc-linux-gnu %s
5 // RUN: c-index-test -test-print-manglings %t.itanium.ast | FileCheck --check-prefix=ITANIUM %s
7 @interface C
8 @end
10 // MACHO: ObjCInterfaceDecl=C{{.*}} [mangled=_OBJC_CLASS_$_C] [mangled=_OBJC_METACLASS_$_C]
11 // ITANIUM: ObjCInterfaceDecl=C{{.*}} [mangled=_OBJC_CLASS_C] [mangled=_OBJC_METACLASS_C]
13 @implementation C
14 @end
16 // MACHO: ObjCImplementationDecl=C{{.*}} (Definition) [mangled=_OBJC_CLASS_$_C] [mangled=_OBJC_METACLASS_$_C]
17 // ITANIUM: ObjCImplementationDecl=C{{.*}} (Definition) [mangled=_OBJC_CLASS_C] [mangled=_OBJC_METACLASS_C]