Trying r45222 hack again...

svn path=/trunk/; revision=45228
This commit is contained in:
Dmitry Gorbachev 2010-01-24 01:58:20 +00:00
parent a79f0c18c8
commit 8e4230d981

View file

@ -9,11 +9,10 @@
#ifdef __GNUC__
#if __GNUC__ * 100 + __GNUC_MINOR__ >= 405
#define UNREACHABLE __builtin_unreachable()
#else
#define UNREACHABLE __builtin_trap()
#endif
#else /* not __GNUC__ */
#define UNREACHABLE
#else
DECLSPEC_NORETURN void exit(int s) {exit(s);}
#define UNREACHABLE exit(0)
#endif
//