don't use indirect gotos in strict mode

This commit is contained in:
Yuichi Nishiwaki 2015-01-26 22:50:44 +09:00
parent be29b69c0c
commit 0b67ec47f3
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
/* #define GC_DEBUG_DETAIL 1 */ /* #define GC_DEBUG_DETAIL 1 */
#ifndef PIC_DIRECT_THREADED_VM #ifndef PIC_DIRECT_THREADED_VM
# if defined(__GNUC__) || defined(__clang__) # if (defined(__GNUC__) || defined(__clang__)) && __STRICT_ANSI__ != 1
# define PIC_DIRECT_THREADED_VM 1 # define PIC_DIRECT_THREADED_VM 1
# endif # endif
#endif #endif