diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-06 21:33:55 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-06 21:33:55 +0000 |
| commit | b6a85b4f6aa3abde23a06c550d7a2db5040d8668 (patch) | |
| tree | f9c41ef238f917683b544c9b6bbe9eb3a3d1e9ba /compiler-rt/lib/builtins/clear_cache.c | |
| parent | 7b46a59b5ad601a67d898d6ac5f2357f40f62f42 (diff) | |
| download | bcm5719-llvm-b6a85b4f6aa3abde23a06c550d7a2db5040d8668.tar.gz bcm5719-llvm-b6a85b4f6aa3abde23a06c550d7a2db5040d8668.zip | |
builtins: remove unnecessary COMPILER_RT_EXPORT
This macro did not do anything at this point, and is not particularly needed for
Windows unless building the builtins as a shared library. NFC.
llvm-svn: 217321
Diffstat (limited to 'compiler-rt/lib/builtins/clear_cache.c')
| -rw-r--r-- | compiler-rt/lib/builtins/clear_cache.c | 4 |
1 files changed, 1 insertions, 3 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 |

