summaryrefslogtreecommitdiffstats
path: root/contrib/compiler-rt/lib/assembly.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/compiler-rt/lib/assembly.h')
-rw-r--r--contrib/compiler-rt/lib/assembly.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/compiler-rt/lib/assembly.h b/contrib/compiler-rt/lib/assembly.h
index c2d5a34..c124e19 100644
--- a/contrib/compiler-rt/lib/assembly.h
+++ b/contrib/compiler-rt/lib/assembly.h
@@ -33,7 +33,7 @@
#ifdef VISIBILITY_HIDDEN
#define DEFINE_COMPILERRT_FUNCTION(name) \
.globl SYMBOL_NAME(name) SEPARATOR \
- .private_extern SYMBOL_NAME(name) SEPARATOR \
+ .hidden SYMBOL_NAME(name) SEPARATOR \
SYMBOL_NAME(name):
#else
#define DEFINE_COMPILERRT_FUNCTION(name) \
@@ -43,12 +43,12 @@
#define DEFINE_COMPILERRT_PRIVATE_FUNCTION(name) \
.globl SYMBOL_NAME(name) SEPARATOR \
- .private_extern SYMBOL_NAME(name) SEPARATOR \
+ .hidden SYMBOL_NAME(name) SEPARATOR \
SYMBOL_NAME(name):
#define DEFINE_COMPILERRT_PRIVATE_FUNCTION_UNMANGLED(name) \
.globl name SEPARATOR \
- .private_extern name SEPARATOR \
+ .hidden name SEPARATOR \
name:
#endif /* COMPILERRT_ASSEMBLY_H */
OpenPOWER on IntegriCloud