diff options
| -rw-r--r-- | compiler-rt/lib/asan/asan_mac.cc | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_interceptors.cc | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/asan_mac.cc b/compiler-rt/lib/asan/asan_mac.cc index eb1ca93ecea..3726950d077 100644 --- a/compiler-rt/lib/asan/asan_mac.cc +++ b/compiler-rt/lib/asan/asan_mac.cc @@ -288,7 +288,7 @@ typedef struct {    u32 parent_tid;  } asan_block_context_t; -static ALWAYS_INLINE +ALWAYS_INLINE  void asan_register_worker_thread(int parent_tid, StackTrace *stack) {    AsanThread *t = GetCurrentThread();    if (!t) { diff --git a/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc b/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc index 240005e3960..c2438f66c81 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc @@ -1656,7 +1656,7 @@ TSAN_INTERCEPTOR(int, poll, void *fds, long_t nfds, int timeout) {    return res;  } -static void ALWAYS_INLINE rtl_generic_sighandler(bool sigact, int sig, +void ALWAYS_INLINE rtl_generic_sighandler(bool sigact, int sig,      my_siginfo_t *info, void *ctx) {    ThreadState *thr = cur_thread();    SignalContext *sctx = SigCtx(thr);  | 

