change PIC_NAN_BOXING enabling condition

This commit is contained in:
Yuichi Nishiwaki 2015-01-26 22:55:59 +09:00
parent 0b67ec47f3
commit 9968b15264
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
#endif
#ifndef PIC_NAN_BOXING
# if __x86_64__ && __STDC_VERSION__ >= 201112L
# if __x86_64__ && (defined(__GNUC__) || defined(__clang__)) && __STRICT_ANSI__ != 1
# define PIC_NAN_BOXING 1
# endif
#endif