1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
242 B
Plaintext
15 lines
242 B
Plaintext
// 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
|