This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Move operand/address-size override prefixes before SIMD prefix


The current x86 assembler outputs operand/address-size override
prefixes after SIMD prefix 0xf2:

[hjl@gnu-13 tmp]$ cat y.s
        .text
        cmplesd         (%ebx),%xmm2
[hjl@gnu-13 tmp]$ gcc -c y.s
[hjl@gnu-13 tmp]$ objdump -d y.o

y.o:     file format elf64-x86-64

Disassembly of section .text:

0000000000000000 <.text>:
   0:   f2 67 0f c2 13 02       addr32 cmplesd (%ebx),%xmm2

I'd like to move operand/address-size override prefixes before SIMD
prefix. I will check it in after I verify it on x86 and x86-64
with gcc, glibc and Linux kernel.


H.J.
-----
gas/

2006-12-05  H.J. Lu <hjl@gnu.org>

	* config/tc-i386.h: Move LOCKREP_PREFIX after ADDR_PREFIX and
	DATA_PREFIX.

gas/testsuite/

2006-12-05  H.J. Lu <hjl@gnu.org>

	* gas/i386/amdfam10.d: Updated for operand/address-size override
	prefix position change.
	* gas/i386/rep-suffix.d: Likewise.
	* gas/i386/rep.d: Likewise.
	* gas/i386/x86-64-amdfam10.d: Likewise.
	* gas/i386/x86-64-rep-suffix.d: Likewise.
	* gas/i386/x86-64-rep.d: Likewise.
	* gas/i386/x86_64.d: Likewise.

--- gas/config/tc-i386.h.prefix	2006-11-08 11:56:02.000000000 -0800
+++ gas/config/tc-i386.h	2006-12-05 11:50:04.000000000 -0800
@@ -104,9 +104,9 @@ extern const char *i386_comment_chars;
    WAIT_PREFIX must be the first prefix since FWAIT is really is an
    instruction, and so must come before any prefixes.  */
 #define WAIT_PREFIX	0
-#define LOCKREP_PREFIX	1
-#define ADDR_PREFIX	2
-#define DATA_PREFIX	3
+#define ADDR_PREFIX	1
+#define DATA_PREFIX	2
+#define LOCKREP_PREFIX	3
 #define SEG_PREFIX	4
 #define REX_PREFIX	5       /* must come last.  */
 #define MAX_PREFIXES	6	/* max prefixes per opcode */
--- gas/testsuite/gas/i386/amdfam10.d.prefix	2006-10-23 15:53:28.000000000 -0700
+++ gas/testsuite/gas/i386/amdfam10.d	2006-12-05 11:53:53.000000000 -0800
@@ -7,13 +7,13 @@ Disassembly of section .text:
 
 0+000 <foo>:
    0:	f3 0f bd 19[ 	]+lzcnt  \(%ecx\),%ebx
-   4:	f3 66 0f bd 19[ 	 ]+lzcnt  \(%ecx\),%bx
+   4:	66 f3 0f bd 19[ 	 ]+lzcnt  \(%ecx\),%bx
    9:	f3 0f bd d9[ 	 ]+lzcnt  %ecx,%ebx
-   d:	f3 66 0f bd d9[ 	 ]+lzcnt  %cx,%bx
+   d:	66 f3 0f bd d9[ 	 ]+lzcnt  %cx,%bx
   12:	f3 0f b8 19[ 	]+popcnt \(%ecx\),%ebx
-  16:	f3 66 0f b8 19[ 	]+popcnt \(%ecx\),%bx
+  16:	66 f3 0f b8 19[ 	]+popcnt \(%ecx\),%bx
   1b:	f3 0f b8 d9[ 	]+popcnt %ecx,%ebx
-  1f:	f3 66 0f b8 d9[ 	]+popcnt %cx,%bx
+  1f:	66 f3 0f b8 d9[ 	]+popcnt %cx,%bx
   24:	66 0f 79 ca[ 	]+extrq  %xmm2,%xmm1
   28:	66 0f 78 c1 02 04[ 	]*extrq  \$0x4,\$0x2,%xmm1
   2e:	f2 0f 79 ca[ 	]+insertq %xmm2,%xmm1
--- gas/testsuite/gas/i386/prefix.d.prefix	2005-01-09 06:12:07.000000000 -0800
+++ gas/testsuite/gas/i386/prefix.d	2006-12-05 11:52:27.000000000 -0800
@@ -11,5 +11,5 @@ Disassembly of section .text:
    8:	9b df e0 [ 	]*fstsw  %ax
    b:	9b df e0 [ 	]*fstsw  %ax
    e:	9b 67 df e0 [ 	]*addr16 fstsw %ax
-  12:	f3 67 66 36 a7 [ 	]*repz addr16 cmpsw %es:\(%di\),%ss:\(%si\)
+  12:	67 66 f3 36 a7 [ 	]*repz addr16 cmpsw %es:\(%di\),%ss:\(%si\)
 #pass
--- gas/testsuite/gas/i386/rep-suffix.d.prefix	2006-03-07 12:18:05.000000000 -0800
+++ gas/testsuite/gas/i386/rep-suffix.d	2006-12-05 11:56:20.000000000 -0800
@@ -8,8 +8,8 @@ Disassembly of section .text:
 0+000 <_start>:
    0:	f3 ac[ 	]+rep lodsb %ds:\(%esi\),%al
    2:	f3 aa[ 	]+rep stosb %al,%es:\(%edi\)
-   4:	f3 66 ad[ 	]+rep lodsw %ds:\(%esi\),%ax
-   7:	f3 66 ab[ 	]+rep stosw %ax,%es:\(%edi\)
+   4:	66 f3 ad[ 	]+rep lodsw %ds:\(%esi\),%ax
+   7:	66 f3 ab[ 	]+rep stosw %ax,%es:\(%edi\)
    a:	f3 ad[ 	]+rep lodsl %ds:\(%esi\),%eax
    c:	f3 ab[ 	]+rep stosl %eax,%es:\(%edi\)
 #pass
--- gas/testsuite/gas/i386/rep.d.prefix	2006-03-23 21:07:53.000000000 -0800
+++ gas/testsuite/gas/i386/rep.d	2006-12-05 11:59:22.000000000 -0800
@@ -13,13 +13,13 @@ Disassembly of section .text:
    8:	f3 aa[ 	]+rep stos %al,%es:\(%edi\)
    a:	f3 a6[ 	]+repz cmpsb %es:\(%edi\),%ds:\(%esi\)
    c:	f3 ae[ 	]+repz scas %es:\(%edi\),%al
-   e:	f3 66 6d[ 	]+rep insw \(%dx\),%es:\(%edi\)
-  11:	f3 66 6f[ 	]+rep outsw %ds:\(%esi\),\(%dx\)
-  14:	f3 66 a5[ 	]+rep movsw %ds:\(%esi\),%es:\(%edi\)
-  17:	f3 66 ad[ 	]+rep lods %ds:\(%esi\),%ax
-  1a:	f3 66 ab[ 	]+rep stos %ax,%es:\(%edi\)
-  1d:	f3 66 a7[ 	]+repz cmpsw %es:\(%edi\),%ds:\(%esi\)
-  20:	f3 66 af[ 	]+repz scas %es:\(%edi\),%ax
+   e:	66 f3 6d[ 	]+rep insw \(%dx\),%es:\(%edi\)
+  11:	66 f3 6f[ 	]+rep outsw %ds:\(%esi\),\(%dx\)
+  14:	66 f3 a5[ 	]+rep movsw %ds:\(%esi\),%es:\(%edi\)
+  17:	66 f3 ad[ 	]+rep lods %ds:\(%esi\),%ax
+  1a:	66 f3 ab[ 	]+rep stos %ax,%es:\(%edi\)
+  1d:	66 f3 a7[ 	]+repz cmpsw %es:\(%edi\),%ds:\(%esi\)
+  20:	66 f3 af[ 	]+repz scas %es:\(%edi\),%ax
   23:	f3 6d[ 	]+rep insl \(%dx\),%es:\(%edi\)
   25:	f3 6f[ 	]+rep outsl %ds:\(%esi\),\(%dx\)
   27:	f3 a5[ 	]+rep movsl %ds:\(%esi\),%es:\(%edi\)
@@ -27,25 +27,25 @@ Disassembly of section .text:
   2b:	f3 ab[ 	]+rep stos %eax,%es:\(%edi\)
   2d:	f3 a7[ 	]+repz cmpsl %es:\(%edi\),%ds:\(%esi\)
   2f:	f3 af[ 	]+repz scas %es:\(%edi\),%eax
-  31:	f3 67 6c[ 	]+rep addr16 insb \(%dx\),%es:\(%di\)
-  34:	f3 67 6e[ 	]+rep addr16 outsb %ds:\(%si\),\(%dx\)
-  37:	f3 67 a4[ 	]+rep addr16 movsb %ds:\(%si\),%es:\(%di\)
-  3a:	f3 67 ac[ 	]+rep addr16 lods %ds:\(%si\),%al
-  3d:	f3 67 aa[ 	]+rep addr16 stos %al,%es:\(%di\)
-  40:	f3 67 a6[ 	]+repz addr16 cmpsb %es:\(%di\),%ds:\(%si\)
-  43:	f3 67 ae[ 	]+repz addr16 scas %es:\(%di\),%al
-  46:	f3 67 66 6d[ 	]+rep addr16 insw \(%dx\),%es:\(%di\)
-  4a:	f3 67 66 6f[ 	]+rep addr16 outsw %ds:\(%si\),\(%dx\)
-  4e:	f3 67 66 a5[ 	]+rep addr16 movsw %ds:\(%si\),%es:\(%di\)
-  52:	f3 67 66 ad[ 	]+rep addr16 lods %ds:\(%si\),%ax
-  56:	f3 67 66 ab[ 	]+rep addr16 stos %ax,%es:\(%di\)
-  5a:	f3 67 66 a7[ 	]+repz addr16 cmpsw %es:\(%di\),%ds:\(%si\)
-  5e:	f3 67 66 af[ 	]+repz addr16 scas %es:\(%di\),%ax
-  62:	f3 67 6d[ 	]+rep addr16 insl \(%dx\),%es:\(%di\)
-  65:	f3 67 6f[ 	]+rep addr16 outsl %ds:\(%si\),\(%dx\)
-  68:	f3 67 a5[ 	]+rep addr16 movsl %ds:\(%si\),%es:\(%di\)
-  6b:	f3 67 ad[ 	]+rep addr16 lods %ds:\(%si\),%eax
-  6e:	f3 67 ab[ 	]+rep addr16 stos %eax,%es:\(%di\)
-  71:	f3 67 a7[ 	]+repz addr16 cmpsl %es:\(%di\),%ds:\(%si\)
-  74:	f3 67 af[ 	]+repz addr16 scas %es:\(%di\),%eax
+  31:	67 f3 6c[ 	]+rep addr16 insb \(%dx\),%es:\(%di\)
+  34:	67 f3 6e[ 	]+rep addr16 outsb %ds:\(%si\),\(%dx\)
+  37:	67 f3 a4[ 	]+rep addr16 movsb %ds:\(%si\),%es:\(%di\)
+  3a:	67 f3 ac[ 	]+rep addr16 lods %ds:\(%si\),%al
+  3d:	67 f3 aa[ 	]+rep addr16 stos %al,%es:\(%di\)
+  40:	67 f3 a6[ 	]+repz addr16 cmpsb %es:\(%di\),%ds:\(%si\)
+  43:	67 f3 ae[ 	]+repz addr16 scas %es:\(%di\),%al
+  46:	67 66 f3 6d[ 	]+rep addr16 insw \(%dx\),%es:\(%di\)
+  4a:	67 66 f3 6f[ 	]+rep addr16 outsw %ds:\(%si\),\(%dx\)
+  4e:	67 66 f3 a5[ 	]+rep addr16 movsw %ds:\(%si\),%es:\(%di\)
+  52:	67 66 f3 ad[ 	]+rep addr16 lods %ds:\(%si\),%ax
+  56:	67 66 f3 ab[ 	]+rep addr16 stos %ax,%es:\(%di\)
+  5a:	67 66 f3 a7[ 	]+repz addr16 cmpsw %es:\(%di\),%ds:\(%si\)
+  5e:	67 66 f3 af[ 	]+repz addr16 scas %es:\(%di\),%ax
+  62:	67 f3 6d[ 	]+rep addr16 insl \(%dx\),%es:\(%di\)
+  65:	67 f3 6f[ 	]+rep addr16 outsl %ds:\(%si\),\(%dx\)
+  68:	67 f3 a5[ 	]+rep addr16 movsl %ds:\(%si\),%es:\(%di\)
+  6b:	67 f3 ad[ 	]+rep addr16 lods %ds:\(%si\),%eax
+  6e:	67 f3 ab[ 	]+rep addr16 stos %eax,%es:\(%di\)
+  71:	67 f3 a7[ 	]+repz addr16 cmpsl %es:\(%di\),%ds:\(%si\)
+  74:	67 f3 af[ 	]+repz addr16 scas %es:\(%di\),%eax
 	...
--- gas/testsuite/gas/i386/x86-64-amdfam10.d.prefix	2006-10-23 15:53:28.000000000 -0700
+++ gas/testsuite/gas/i386/x86-64-amdfam10.d	2006-12-05 11:57:23.000000000 -0800
@@ -8,16 +8,16 @@ Disassembly of section .text:
 0+000 <foo>:
    0:	f3 48 0f bd 19[ 	]+lzcnt  \(%rcx\),%rbx
    5:	f3 0f bd 19[ 	]+lzcnt  \(%rcx\),%ebx
-   9:	f3 66 0f bd 19[ 	]+lzcnt  \(%rcx\),%bx
+   9:	66 f3 0f bd 19[ 	]+lzcnt  \(%rcx\),%bx
    e:	f3 48 0f bd d9[ 	]+lzcnt  %rcx,%rbx
   13:	f3 0f bd d9[ 	]+lzcnt  %ecx,%ebx
-  17:	f3 66 0f bd d9[ 	]+lzcnt  %cx,%bx
+  17:	66 f3 0f bd d9[ 	]+lzcnt  %cx,%bx
   1c:	f3 48 0f b8 19[ 	]+popcnt \(%rcx\),%rbx
   21:	f3 0f b8 19[ 	]+popcnt \(%rcx\),%ebx
-  25:	f3 66 0f b8 19[ 	]+popcnt \(%rcx\),%bx
+  25:	66 f3 0f b8 19[ 	]+popcnt \(%rcx\),%bx
   2a:	f3 48 0f b8 d9[ 	]+popcnt %rcx,%rbx
   2f:	f3 0f b8 d9[ 	]+popcnt %ecx,%ebx
-  33:	f3 66 0f b8 d9[ 	]+popcnt %cx,%bx
+  33:	66 f3 0f b8 d9[ 	]+popcnt %cx,%bx
   38:	66 0f 79 ca[ 	]+extrq  %xmm2,%xmm1
   3c:	66 0f 78 c1 02 04[ 	]+extrq  \$0x4,\$0x2,%xmm1
   42:	f2 0f 79 ca[ 	]+insertq %xmm2,%xmm1
--- gas/testsuite/gas/i386/x86-64-rep-suffix.d.prefix	2006-03-07 12:18:05.000000000 -0800
+++ gas/testsuite/gas/i386/x86-64-rep-suffix.d	2006-12-05 11:58:44.000000000 -0800
@@ -8,8 +8,8 @@ Disassembly of section .text:
 0+000 <_start>:
    0:	f3 ac[ 	]+rep lodsb %ds:\(%rsi\),%al
    2:	f3 aa[ 	]+rep stosb %al,%es:\(%rdi\)
-   4:	f3 66 ad[ 	]+rep lodsw %ds:\(%rsi\),%ax
-   7:	f3 66 ab[ 	]+rep stosw %ax,%es:\(%rdi\)
+   4:	66 f3 ad[ 	]+rep lodsw %ds:\(%rsi\),%ax
+   7:	66 f3 ab[ 	]+rep stosw %ax,%es:\(%rdi\)
    a:	f3 ad[ 	]+rep lodsl %ds:\(%rsi\),%eax
    c:	f3 ab[ 	]+rep stosl %eax,%es:\(%rdi\)
    e:	f3 48 ad[ 	]+rep lodsq %ds:\(%rsi\),%rax
--- gas/testsuite/gas/i386/x86-64-rep.d.prefix	2006-03-07 12:18:05.000000000 -0800
+++ gas/testsuite/gas/i386/x86-64-rep.d	2006-12-05 11:58:39.000000000 -0800
@@ -13,13 +13,13 @@ Disassembly of section .text:
    8:	f3 aa[ 	]+rep stos %al,%es:\(%rdi\)
    a:	f3 a6[ 	]+repz cmpsb %es:\(%rdi\),%ds:\(%rsi\)
    c:	f3 ae[ 	]+repz scas %es:\(%rdi\),%al
-   e:	f3 66 6d[ 	]+rep insw \(%dx\),%es:\(%rdi\)
-  11:	f3 66 6f[ 	]+rep outsw %ds:\(%rsi\),\(%dx\)
-  14:	f3 66 a5[ 	]+rep movsw %ds:\(%rsi\),%es:\(%rdi\)
-  17:	f3 66 ad[ 	]+rep lods %ds:\(%rsi\),%ax
-  1a:	f3 66 ab[ 	]+rep stos %ax,%es:\(%rdi\)
-  1d:	f3 66 a7[ 	]+repz cmpsw %es:\(%rdi\),%ds:\(%rsi\)
-  20:	f3 66 af[ 	]+repz scas %es:\(%rdi\),%ax
+   e:	66 f3 6d[ 	]+rep insw \(%dx\),%es:\(%rdi\)
+  11:	66 f3 6f[ 	]+rep outsw %ds:\(%rsi\),\(%dx\)
+  14:	66 f3 a5[ 	]+rep movsw %ds:\(%rsi\),%es:\(%rdi\)
+  17:	66 f3 ad[ 	]+rep lods %ds:\(%rsi\),%ax
+  1a:	66 f3 ab[ 	]+rep stos %ax,%es:\(%rdi\)
+  1d:	66 f3 a7[ 	]+repz cmpsw %es:\(%rdi\),%ds:\(%rsi\)
+  20:	66 f3 af[ 	]+repz scas %es:\(%rdi\),%ax
   23:	f3 6d[ 	]+rep insl \(%dx\),%es:\(%rdi\)
   25:	f3 6f[ 	]+rep outsl %ds:\(%rsi\),\(%dx\)
   27:	f3 a5[ 	]+rep movsl %ds:\(%rsi\),%es:\(%rdi\)
@@ -32,30 +32,30 @@ Disassembly of section .text:
   37:	f3 48 ab[ 	]+rep stos %rax,%es:\(%rdi\)
   3a:	f3 48 a7[ 	]+repz cmpsq %es:\(%rdi\),%ds:\(%rsi\)
   3d:	f3 48 af[ 	]+repz scas %es:\(%rdi\),%rax
-  40:	f3 67 6c[ 	]+rep addr32 insb \(%dx\),%es:\(%edi\)
-  43:	f3 67 6e[ 	]+rep addr32 outsb %ds:\(%esi\),\(%dx\)
-  46:	f3 67 a4[ 	]+rep addr32 movsb %ds:\(%esi\),%es:\(%edi\)
-  49:	f3 67 ac[ 	]+rep addr32 lods %ds:\(%esi\),%al
-  4c:	f3 67 aa[ 	]+rep addr32 stos %al,%es:\(%edi\)
-  4f:	f3 67 a6[ 	]+repz addr32 cmpsb %es:\(%edi\),%ds:\(%esi\)
-  52:	f3 67 ae[ 	]+repz addr32 scas %es:\(%edi\),%al
-  55:	f3 67 66 6d[ 	]+rep addr32 insw \(%dx\),%es:\(%edi\)
-  59:	f3 67 66 6f[ 	]+rep addr32 outsw %ds:\(%esi\),\(%dx\)
-  5d:	f3 67 66 a5[ 	]+rep addr32 movsw %ds:\(%esi\),%es:\(%edi\)
-  61:	f3 67 66 ad[ 	]+rep addr32 lods %ds:\(%esi\),%ax
-  65:	f3 67 66 ab[ 	]+rep addr32 stos %ax,%es:\(%edi\)
-  69:	f3 67 66 a7[ 	]+repz addr32 cmpsw %es:\(%edi\),%ds:\(%esi\)
-  6d:	f3 67 66 af[ 	]+repz addr32 scas %es:\(%edi\),%ax
-  71:	f3 67 6d[ 	]+rep addr32 insl \(%dx\),%es:\(%edi\)
-  74:	f3 67 6f[ 	]+rep addr32 outsl %ds:\(%esi\),\(%dx\)
-  77:	f3 67 a5[ 	]+rep addr32 movsl %ds:\(%esi\),%es:\(%edi\)
-  7a:	f3 67 ad[ 	]+rep addr32 lods %ds:\(%esi\),%eax
-  7d:	f3 67 ab[ 	]+rep addr32 stos %eax,%es:\(%edi\)
-  80:	f3 67 a7[ 	]+repz addr32 cmpsl %es:\(%edi\),%ds:\(%esi\)
-  83:	f3 67 af[ 	]+repz addr32 scas %es:\(%edi\),%eax
-  86:	f3 67 48 a5[ 	]+rep addr32 movsq %ds:\(%esi\),%es:\(%edi\)
-  8a:	f3 67 48 ad[ 	]+rep addr32 lods %ds:\(%esi\),%rax
-  8e:	f3 67 48 ab[ 	]+rep addr32 stos %rax,%es:\(%edi\)
-  92:	f3 67 48 a7[ 	]+repz addr32 cmpsq %es:\(%edi\),%ds:\(%esi\)
-  96:	f3 67 48 af[ 	]+repz addr32 scas %es:\(%edi\),%rax
+  40:	67 f3 6c[ 	]+rep addr32 insb \(%dx\),%es:\(%edi\)
+  43:	67 f3 6e[ 	]+rep addr32 outsb %ds:\(%esi\),\(%dx\)
+  46:	67 f3 a4[ 	]+rep addr32 movsb %ds:\(%esi\),%es:\(%edi\)
+  49:	67 f3 ac[ 	]+rep addr32 lods %ds:\(%esi\),%al
+  4c:	67 f3 aa[ 	]+rep addr32 stos %al,%es:\(%edi\)
+  4f:	67 f3 a6[ 	]+repz addr32 cmpsb %es:\(%edi\),%ds:\(%esi\)
+  52:	67 f3 ae[ 	]+repz addr32 scas %es:\(%edi\),%al
+  55:	67 66 f3 6d[ 	]+rep addr32 insw \(%dx\),%es:\(%edi\)
+  59:	67 66 f3 6f[ 	]+rep addr32 outsw %ds:\(%esi\),\(%dx\)
+  5d:	67 66 f3 a5[ 	]+rep addr32 movsw %ds:\(%esi\),%es:\(%edi\)
+  61:	67 66 f3 ad[ 	]+rep addr32 lods %ds:\(%esi\),%ax
+  65:	67 66 f3 ab[ 	]+rep addr32 stos %ax,%es:\(%edi\)
+  69:	67 66 f3 a7[ 	]+repz addr32 cmpsw %es:\(%edi\),%ds:\(%esi\)
+  6d:	67 66 f3 af[ 	]+repz addr32 scas %es:\(%edi\),%ax
+  71:	67 f3 6d[ 	]+rep addr32 insl \(%dx\),%es:\(%edi\)
+  74:	67 f3 6f[ 	]+rep addr32 outsl %ds:\(%esi\),\(%dx\)
+  77:	67 f3 a5[ 	]+rep addr32 movsl %ds:\(%esi\),%es:\(%edi\)
+  7a:	67 f3 ad[ 	]+rep addr32 lods %ds:\(%esi\),%eax
+  7d:	67 f3 ab[ 	]+rep addr32 stos %eax,%es:\(%edi\)
+  80:	67 f3 a7[ 	]+repz addr32 cmpsl %es:\(%edi\),%ds:\(%esi\)
+  83:	67 f3 af[ 	]+repz addr32 scas %es:\(%edi\),%eax
+  86:	67 f3 48 a5[ 	]+rep addr32 movsq %ds:\(%esi\),%es:\(%edi\)
+  8a:	67 f3 48 ad[ 	]+rep addr32 lods %ds:\(%esi\),%rax
+  8e:	67 f3 48 ab[ 	]+rep addr32 stos %rax,%es:\(%edi\)
+  92:	67 f3 48 a7[ 	]+repz addr32 cmpsq %es:\(%edi\),%ds:\(%esi\)
+  96:	67 f3 48 af[ 	]+repz addr32 scas %es:\(%edi\),%rax
 #pass
--- gas/testsuite/gas/i386/x86_64.d.prefix	2006-09-20 04:35:11.000000000 -0700
+++ gas/testsuite/gas/i386/x86_64.d	2006-12-05 11:56:55.000000000 -0800
@@ -38,7 +38,7 @@ Disassembly of section .text:
 [ 	]+5a:	44 0f 20 c0[ 	]+mov[ 	]+%cr8,%rax
 [ 	]+5e:	44 0f 22 c0[ 	]+mov[ 	]+%rax,%cr8
 [ 	]+62:	f3 48 a5[ 	]+rep movsq %ds:\(%rsi\),%es:\(%rdi\)
-[ 	]+65:	f3 66 a5[ 	]+rep movsw %ds:\(%rsi\),%es:\(%rdi\)
+[ 	]+65:	66 f3 a5[ 	]+rep movsw %ds:\(%rsi\),%es:\(%rdi\)
 [ 	]+68:	f3 48 a5[ 	]+rep movsq %ds:\(%rsi\),%es:\(%rdi\)
 [ 	]+6b:	b0 11[ 	]+mov[ 	]+\$0x11,%al
 [ 	]+6d:	b4 11[ 	]+mov[ 	]+\$0x11,%ah


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]