[MINGW/INTRIN]
authorAmine Khaldi <amine.khaldi@reactos.org>
Thu, 9 Oct 2014 10:57:10 +0000 (10:57 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Thu, 9 Oct 2014 10:57:10 +0000 (10:57 +0000)
* Silence a Clang warning about returning from a noreturn function.
CORE-8516

svn path=/trunk/; revision=64632

reactos/include/crt/mingw32/intrin_x86.h

index cee2044..c600ef1 100644 (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 ***/