[MINGW/INTRIN]

* Silence a Clang warning about returning from a noreturn function.
CORE-8516

svn path=/trunk/; revision=64632
This commit is contained in:
Amine Khaldi 2014-10-09 10:57:10 +00:00
parent 7200f7a6ea
commit 7f1d80afea

View file

@ -1540,6 +1540,7 @@ __declspec(noreturn)
__INTRIN_INLINE void __fastfail(unsigned int Code)
{
__asm__("int $0x29" : : "c"(Code) : "memory");
__builtin_unreachable();
}
/*** Protected memory management ***/