diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-18 21:55:56 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-18 21:55:56 -0700 |
commit | f48bc6fb485de852c128c5756c77acd0611c2b87 (patch) | |
tree | 77593f0cba7ae5e24932f05761112a14ff4320ab /insns.h | |
parent | 5107d672a006750a8f20b227d1fe33ead77ddd41 (diff) | |
download | nasm-f48bc6fb485de852c128c5756c77acd0611c2b87.tar.gz nasm-f48bc6fb485de852c128c5756c77acd0611c2b87.tar.bz2 nasm-f48bc6fb485de852c128c5756c77acd0611c2b87.zip |
Support generating NaNs and infinities
Support generating NaNs and infinities as part of floating-point
constants.
Diffstat (limited to 'insns.h')
-rw-r--r-- | insns.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,10 +12,10 @@ #include "nasm.h" /* max length of any instruction, register name etc. */ -#if MAX_INSLEN > 9 /* MAX_INSLEN defined in insnsi.h */ +#if MAX_INSLEN > 12 /* MAX_INSLEN defined in insnsi.h */ #define MAX_KEYWORD MAX_INSLEN #else -#define MAX_KEYWORD 9 +#define MAX_KEYWORD 12 #endif struct itemplate { |