From: LLVM Packaging Team Date: Sat, 4 May 2024 05:30:47 +0000 (+0200) Subject: declare_clear_cache X-Git-Tag: archive/raspbian/1%19.1.3-1+rpi1~1^2^2~88 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b4fc633b191c1eca0cd09fb1d6c76d9f91f8d3e3;p=llvm-toolchain-19.git declare_clear_cache Gbp-Pq: Name declare_clear_cache.diff --- diff --git a/llvm/lib/Support/Unix/Memory.inc b/llvm/lib/Support/Unix/Memory.inc index 4c8f6b2ea7..f4c6af8ac4 100644 --- a/llvm/lib/Support/Unix/Memory.inc +++ b/llvm/lib/Support/Unix/Memory.inc @@ -242,7 +242,7 @@ void Memory::InvalidateInstructionCache(const void *Addr, size_t Len) { // FIXME: Can we safely always call this for __GNUC__ everywhere? const char *Start = static_cast(Addr); const char *End = Start + Len; - __clear_cache(const_cast(Start), const_cast(End)); + __builtin___clear_cache(const_cast(Start), const_cast(End)); #endif #endif // end apple