mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-25 02:28:18 +00:00
0f19afb9d4
should not be mangled either. Fixes radar 8016412. llvm-svn: 107303
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
|