From: Cyrill Gorcunov Date: Fri, 24 Jun 2011 12:04:34 +0000 (+0400) Subject: Add IF_AVX2 flag X-Git-Tag: nasm-2.11.05~418 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f753cd2fd3377f59ff8b823961f3bfe0fa4c984c;p=platform%2Fupstream%2Fnasm.git Add IF_AVX2 flag Signed-off-by: Cyrill Gorcunov --- diff --git a/insns.h b/insns.h index 51fb5cd..173a416 100644 --- a/insns.h +++ b/insns.h @@ -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 */