summaryrefslogtreecommitdiff
path: root/test/CodeGenObjCXX
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2014-05-06 20:32:45 +0000
committerNico Weber <nicolasweber@gmx.de>2014-05-06 20:32:45 +0000
commitafafe70f43dbb614f336ccbede1c4bbb132ec658 (patch)
tree11a888fe4d8f7324062c221ba2feaea20584049a /test/CodeGenObjCXX
parent0cb2626cb56ec10c82dc76b241b1cd035951847c (diff)
downloadclang-afafe70f43dbb614f336ccbede1c4bbb132ec658.tar.gz
clang-afafe70f43dbb614f336ccbede1c4bbb132ec658.tar.bz2
clang-afafe70f43dbb614f336ccbede1c4bbb132ec658.tar.xz
Include translation unit filename in global ctor symbol names.
This makes it easier to see where a global ctor comes from, and it also makes ASan's init order analyzer output easier to understand. gcc does this too, but only in -fPIC mode for some reason. Don't do this for constructors with explicit init priority. Also prepend "sub_" before the 'I', that way regular constructors stay lexicographically after symbols with init priority (because ord('s') > ord('I')). gold seems to ignore the name of constructor symbols, and ld only looks at the symbol if it includes an init priority, which this patch doesn't change. Before: __GLOBAL_I_a Now: __GLOBAL_sub_I_myfile.cc git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjCXX')
-rw-r--r--test/CodeGenObjCXX/arc-globals.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenObjCXX/arc-globals.mm b/test/CodeGenObjCXX/arc-globals.mm
index 84ea180bca..8ba3fb8f58 100644
--- a/test/CodeGenObjCXX/arc-globals.mm
+++ b/test/CodeGenObjCXX/arc-globals.mm
@@ -19,7 +19,7 @@ id global_obj = getObject();
// CHECK-NEXT: ret void
id global_obj2 = getObject();
-// CHECK-LABEL: define internal void @_GLOBAL__I_a
+// CHECK-LABEL: define internal void @_GLOBAL__sub_I_arc_globals.mm
// CHECK: call i8* @objc_autoreleasePoolPush()
// CHECK-NEXT: call void @__cxx_global_var_init
// CHECK-NEXT: call void @__cxx_global_var_init1