diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-07-06 19:11:01 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-07-06 19:11:01 +0000 |
commit | bf50992e53161e113648b821e349d94e9d9642cf (patch) | |
tree | 52a225e3366a2a7c7f863247e470fc3032812d46 /gas/config/tc-i386.h | |
parent | 3cb3b8dfd1975f480bec3ebd8023f1cc8351606d (diff) | |
download | gdb-bf50992e53161e113648b821e349d94e9d9642cf.zip gdb-bf50992e53161e113648b821e349d94e9d9642cf.tar.gz gdb-bf50992e53161e113648b821e349d94e9d9642cf.tar.bz2 |
2005-07-06 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (cpu_arch): Add sse3.
* config/tc-i386.h (CpuSSE3): Renamed from ...
(CpuPNI): This. Defined as CpuSSE3.
* doc/c-i386.texi: Document .sse3.
Diffstat (limited to 'gas/config/tc-i386.h')
-rw-r--r-- | gas/config/tc-i386.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index e4359fe..e545397 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -182,7 +182,8 @@ typedef struct #define CpuSSE2 0x4000 /* Streaming SIMD extensions 2 required */ #define Cpu3dnow 0x8000 /* 3dnow! support required */ #define Cpu3dnowA 0x10000 /* 3dnow!Extensions support required */ -#define CpuPNI 0x20000 /* Prescott New Instructions required */ +#define CpuSSE3 0x20000 /* Streaming SIMD extensions 3 required */ +#define CpuPNI CpuSSE3 /* Prescott New Instructions required */ #define CpuPadLock 0x40000 /* VIA PadLock required */ #define CpuSVME 0x80000 /* AMD Secure Virtual Machine Ext-s required */ |