1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Fix __clear_cache declaration.

This fixes the build with gcc in gnu++98 and gnu++11 mode.

llvm-svn: 181811
This commit is contained in:
Rafael Espindola 2013-05-14 18:06:14 +00:00
parent e3d05e6f9d
commit 7252816ae7

View File

@ -33,7 +33,7 @@
#endif
extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
extern "C" void __clear_cache(char *, char*);
extern "C" void __clear_cache(void *, void*);
namespace {