Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/libc++/alloc_visibility_overrides.S

Issue 2938913003: Force hidden symbol visibility for allocation operators (Closed)
Patch Set: Remove stdlib_new_delete from libc++abi Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | third_party/libc++abi/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libc++/alloc_visibility_overrides.S
diff --git a/third_party/libc++/alloc_visibility_overrides.S b/third_party/libc++/alloc_visibility_overrides.S
new file mode 100644
index 0000000000000000000000000000000000000000..b70a51d1ce38fa95163bbec59c783e2e534c0479
--- /dev/null
+++ b/third_party/libc++/alloc_visibility_overrides.S
@@ -0,0 +1,7 @@
+#define DEFINE_HIDDEN(x) \
+ .globl x; .hidden x
+
+DEFINE_HIDDEN(_Znwm)
+DEFINE_HIDDEN(_Znam)
+DEFINE_HIDDEN(_ZdlPv)
+DEFINE_HIDDEN(_ZdaPv)
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | third_party/libc++abi/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698