diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-06-24 16:04:34 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-06-25 12:01:30 +0400 |
commit | f753cd2fd3377f59ff8b823961f3bfe0fa4c984c (patch) | |
tree | 874a3d4f8fa58d5d5112a622b7aa00480214e7d8 /insns.h | |
parent | 08c023fffb70a72389360b3d2cbc700ffca992c0 (diff) | |
download | nasm-f753cd2fd3377f59ff8b823961f3bfe0fa4c984c.tar.gz nasm-f753cd2fd3377f59ff8b823961f3bfe0fa4c984c.tar.bz2 nasm-f753cd2fd3377f59ff8b823961f3bfe0fa4c984c.zip |
Add IF_AVX2 flag
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'insns.h')
-rw-r--r-- | insns.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -108,6 +108,7 @@ extern const uint8_t nasm_bytecodes[]; #define IF_SSE42 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */ #define IF_SSE5 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */ #define IF_AVX 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */ +#define IF_AVX2 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */ #define IF_FMA 0x00800000UL /* HACK NEED TO REORGANIZE THESE BITS */ #define IF_PMASK 0xFF000000UL /* the mask for processor types */ #define IF_PLEVEL 0x0F000000UL /* the mask for processor instr. level */ |