headers: Fix noreturn compile warning for __fastfail()

mingw-w64-headers/crt/_mingw.h: In function ‘__fastfail’:
    mingw-w64-headers/crt/_mingw.h:615:1: warning: ‘noreturn’ function does return
     }
     ^

Signed-off-by: LIU Hao <lh_mouse@126.com>
This commit is contained in:
Pali Rohár 2022-12-18 17:29:18 +01:00 committed by LIU Hao
parent 0538a4770f
commit 2e56998f99

View File

@ -612,6 +612,7 @@ __MINGW_INTRIN_INLINE void __cdecl __MINGW_ATTRIB_NORETURN __fastfail(unsigned i
#else
__asm__ __volatile__("unimplemented");
#endif
__builtin_unreachable();
}
#endif /* __MINGW_FASTFAIL_IMPL == 1 */