diff options
| -rw-r--r-- | compiler-rt/lib/builtins/clear_cache.c | 4 | ||||
| -rw-r--r-- | compiler-rt/lib/builtins/int_lib.h | 10 |
2 files changed, 3 insertions, 11 deletions
diff --git a/compiler-rt/lib/builtins/clear_cache.c b/compiler-rt/lib/builtins/clear_cache.c index 54c928810cd..e0bd8b045f8 100644 --- a/compiler-rt/lib/builtins/clear_cache.c +++ b/compiler-rt/lib/builtins/clear_cache.c @@ -32,9 +32,7 @@ * specified range. */ -COMPILER_RT_EXPORT void -__clear_cache(void* start, void* end) -{ +void __clear_cache(void *start, void *end) { #if __i386__ || __x86_64__ /* * Intel processors have a unified instruction and data cache diff --git a/compiler-rt/lib/builtins/int_lib.h b/compiler-rt/lib/builtins/int_lib.h index 75ab975066e..ff314da986f 100644 --- a/compiler-rt/lib/builtins/int_lib.h +++ b/compiler-rt/lib/builtins/int_lib.h @@ -22,19 +22,13 @@ /* ABI macro definitions */ -/* - * TODO define this appropriately for targets that require explicit export - * declarations (i.e. Windows) - */ -#define COMPILER_RT_EXPORT - #if __ARM_EABI__ # define ARM_EABI_FNALIAS(aeabi_name, name) \ void __aeabi_##aeabi_name() __attribute__((alias("__" #name))); -# define COMPILER_RT_ABI COMPILER_RT_EXPORT __attribute__((pcs("aapcs"))) +# define COMPILER_RT_ABI __attribute__((pcs("aapcs"))) #else # define ARM_EABI_FNALIAS(aeabi_name, name) -# define COMPILER_RT_ABI COMPILER_RT_EXPORT +# define COMPILER_RT_ABI #endif #if defined(__NetBSD__) && (defined(_KERNEL) || defined(_STANDALONE)) |

