Remove all 'static' before ALWAYS_INLINE

llvm-svn: 178290
This commit is contained in:
Timur Iskhodzhanov 2013-03-28 21:16:09 +00:00
parent d38b835230
commit 07d06d7cf5
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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);