diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-10-16 21:53:16 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-10-16 21:53:16 +0000 |
commit | da98bb4c748be5cfc2c48de41ce71a6a47ac6268 (patch) | |
tree | 29e1bc8779a15daf33c28757a39686b41859168c /opcodes | |
parent | fb43c6529c9cd542cb154203093cf2d316e5d11e (diff) | |
download | binutils-da98bb4c748be5cfc2c48de41ce71a6a47ac6268.zip binutils-da98bb4c748be5cfc2c48de41ce71a6a47ac6268.tar.gz binutils-da98bb4c748be5cfc2c48de41ce71a6a47ac6268.tar.bz2 |
Add CpuNop to CPU_GENERIC64_FLAGS.
gas/testsuite/
2010-10-16 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/i386.exp: Run x86-64-nops-1-g64.
* gas/i386/x86-64-nops-1.d: Remove -mtune=generic64.
* gas/i386/x86-64-nops-1-g64.d: New.
opcodes/
2010-10-16 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (cpu_flag_init): Add CpuNop to CPU_GENERIC64_FLAGS.
* i386-init.h: Regenerated.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 6 | ||||
-rw-r--r-- | opcodes/i386-gen.c | 2 | ||||
-rw-r--r-- | opcodes/i386-init.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 98dedc3..ea0eeef 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,9 @@ +2010-10-16 H.J. Lu <hongjiu.lu@intel.com> + + * i386-gen.c (cpu_flag_init): Add CpuNop to CPU_GENERIC64_FLAGS. + + * i386-init.h: Regenerated. + 2010-10-15 Mike Frysinger <vapier@gentoo.org> * bfin-dis.c (decode_dsp32alu_0): Call imm5d() for BYTEOP2M. diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c index 79fe9ad..ee06338 100644 --- a/opcodes/i386-gen.c +++ b/opcodes/i386-gen.c @@ -47,7 +47,7 @@ static initializer cpu_flag_init[] = { "CPU_GENERIC32_FLAGS", "Cpu186|Cpu286|Cpu386" }, { "CPU_GENERIC64_FLAGS", - "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuMMX|CpuSSE|CpuSSE2|CpuLM" }, + "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuNop|CpuMMX|CpuSSE|CpuSSE2|CpuLM" }, { "CPU_NONE_FLAGS", "0" }, { "CPU_I186_FLAGS", diff --git a/opcodes/i386-init.h b/opcodes/i386-init.h index 9a3a999..fe546b6 100644 --- a/opcodes/i386-init.h +++ b/opcodes/i386-init.h @@ -30,7 +30,7 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0 } } #define CPU_GENERIC64_FLAGS \ - { { 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, \ + { { 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, \ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ 0, 0, 0, 0, 0, 1, 0, 0, 0 } } |