aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX/method-local-extern-mangle.mm
blob: 794075da1adbc9977fe5971fe3fddb2ba36215d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s

// CHECK: @gGlobals = external global

@interface I
- (int) Meth;
@end

@implementation I
- (int) Meth {
    extern int gGlobals;
    return gGlobals;
}
@end