Sign in
chromium
/
external
/
github.com
/
emscripten-core
/
emscripten-fastcomp-clang
/
refs/heads/land-pnacl-3.5
/
.
/
test
/
CodeGenObjCXX
/
method-local-extern-mangle.mm
blob: 794075da1adbc9977fe5971fe3fddb2ba36215d8 [
file
] [
log
] [
blame
] [
edit
]
// 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