aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2010-06-30 18:27:47 +0000
committerFariborz Jahanian <fjahanian@apple.com>2010-06-30 18:27:47 +0000
commit2fe13882a846b4152abf0734be43b3e141843818 (patch)
treebeac4ac8aeebba817eb3728545f42a1bbbc60bb4 /test/CodeGenObjCXX
parent4680bf233caeebe89aa297eb5a25709dd15a4b11 (diff)
extern variable declared locally to objective-c++ method
should not be mangled either. Fixes radar 8016412. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjCXX')
-rw-r--r--test/CodeGenObjCXX/method-local-extern-mangle.mm14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenObjCXX/method-local-extern-mangle.mm b/test/CodeGenObjCXX/method-local-extern-mangle.mm
new file mode 100644
index 0000000000..794075da1a
--- /dev/null
+++ b/test/CodeGenObjCXX/method-local-extern-mangle.mm
@@ -0,0 +1,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