Skip to content

Commit

Permalink
Fix __clear_cache declaration.
Browse files Browse the repository at this point in the history
This fixes the build with gcc in gnu++98 and gnu++11 mode.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181811 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed May 14, 2013
1 parent 304d73c commit d1bf522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Support/Unix/Memory.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit d1bf522

Please sign in to comment.