Optimize arithmetic with pointer to value on stack + constant
[tinycc/daniel.git] / win32 / include / excpt.h
blob774612458fb8f0f2374ed373ef68bbd9cf8bed24
1 #ifndef _EXCPT_H
2 #define _EXCPT_H
3 #if __GNUC__ >=3
4 #pragma GCC system_header
5 #endif
7 /* FIXME: This will make some code compile. The programs will most
8 likely crash when an exception is raised, but at least they will
9 compile. */
10 #ifdef __GNUC__
11 #define __try
12 #define __except(x) if (0) /* don't execute handler */
13 #define __finally
15 #define _try __try
16 #define _except __except
17 #define _finally __finally
18 #endif
20 #endif