xref: /aosp_15_r20/external/clang/test/CodeGenObjCXX/method-local-extern-mangle.mm (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2
3// CHECK: @gGlobals = external global
4
5@interface I
6- (int) Meth;
7@end
8
9@implementation I
10- (int) Meth {
11    extern int gGlobals;
12    return gGlobals;
13}
14@end
15