summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Gallop <russell.gallop@sony.com>2020-09-10 16:41:11 +0100
committerRussell Gallop <russell.gallop@sony.com>2021-01-21 16:55:39 +0000
commit4ef2a76efa9f6cb29f8d7f4752988bdf86b04c23 (patch)
tree5cbcf74c0b640887ff5a91613558cb30ac8d1ab9
parent693e73ac27c551f0a7a9bf68e30228d713d54591 (diff)
downloadllvm-4ef2a76efa9f6cb29f8d7f4752988bdf86b04c23.tar.gz
Set INTERFACE for __scudo_print_stats
-rw-r--r--compiler-rt/lib/scudo/standalone/include/scudo/interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/scudo/standalone/include/scudo/interface.h b/compiler-rt/lib/scudo/standalone/include/scudo/interface.h
index 021890a70f5b..057c79efba3b 100644
--- a/compiler-rt/lib/scudo/standalone/include/scudo/interface.h
+++ b/compiler-rt/lib/scudo/standalone/include/scudo/interface.h
@@ -32,7 +32,7 @@ WEAK const char *__scudo_default_options();
WEAK void __scudo_allocate_hook(void *ptr, size_t size);
WEAK void __scudo_deallocate_hook(void *ptr);
-void __scudo_print_stats(void);
+INTERFACE void __scudo_print_stats(void);
typedef void (*iterate_callback)(uintptr_t base, size_t size, void *arg);