diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 13:35:24 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 13:35:24 -0400 |
commit | f17424ed535ce5ea62271d21f9e9363d3b329fc9 (patch) | |
tree | f79cd08d0b2fda01fc28aafe93f36863fa1d1d7a /sysdeps/x86_64/wcscmp.S | |
parent | 95584d3b3309ff4da4cc458254df383f5cff044b (diff) | |
download | glibc-f17424ed535ce5ea62271d21f9e9363d3b329fc9.tar.gz glibc-f17424ed535ce5ea62271d21f9e9363d3b329fc9.tar.xz glibc-f17424ed535ce5ea62271d21f9e9363d3b329fc9.zip |
Fix WS
Diffstat (limited to 'sysdeps/x86_64/wcscmp.S')
-rw-r--r-- | sysdeps/x86_64/wcscmp.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/x86_64/wcscmp.S b/sysdeps/x86_64/wcscmp.S index 12bfdafd41..146fa3a2c3 100644 --- a/sysdeps/x86_64/wcscmp.S +++ b/sysdeps/x86_64/wcscmp.S @@ -78,7 +78,7 @@ L(continue_48_48): jne L(nequal) test %ecx, %ecx jz L(equal) - + movdqu 16(%rdi), %xmm1 movdqu 16(%rsi), %xmm2 pcmpeqd %xmm1, %xmm0 /* Any null double_word? */ @@ -213,7 +213,7 @@ L(continue_00_48): cmp (%rsi), %eax jne L(nequal) - + mov 4(%rdi), %eax cmp 4(%rsi), %eax jne L(nequal) @@ -225,7 +225,7 @@ L(continue_00_48): mov 12(%rdi), %eax cmp 12(%rsi), %eax jne L(nequal) - + movdqu 16(%rsi), %xmm2 pcmpeqd %xmm2, %xmm0 /* Any null double_word? */ pcmpeqd 16(%rdi), %xmm2 /* compare first 4 double_words for equality */ @@ -534,7 +534,7 @@ L(continue_48_00): cmp (%rsi), %eax jne L(nequal) - + mov 4(%rdi), %eax cmp 4(%rsi), %eax jne L(nequal) @@ -546,7 +546,7 @@ L(continue_48_00): mov 12(%rdi), %eax cmp 12(%rsi), %eax jne L(nequal) - + movdqu 16(%rdi), %xmm1 pcmpeqd %xmm1, %xmm0 /* Any null double_word? */ pcmpeqd 16(%rsi), %xmm1 /* compare first 4 double_words for equality */ |