diff options
author | Dimitry Andric <[email protected]> | 2011-01-24 14:36:37 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-24 14:37:52 -0700 |
commit | 811ee32a9ef177bec46c82692eeac8bc7297753c (patch) | |
tree | 5131fac4e49697e2b454ac8adf8c4c0ab5ff6644 /src/mesa/x86 | |
parent | 3fda80246f0c41edebdfb4b1ce35bb4726a8c521 (diff) |
mesa: s/movzxw/movzwl/ in read_rgba_span_x86.S
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33386
NOTE: This is a candidate for the 7.9 and 7.10 branches
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/read_rgba_span_x86.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86/read_rgba_span_x86.S b/src/mesa/x86/read_rgba_span_x86.S index 3886a510bbc..81772997371 100644 --- a/src/mesa/x86/read_rgba_span_x86.S +++ b/src/mesa/x86/read_rgba_span_x86.S @@ -648,7 +648,7 @@ _generic_read_RGBA_span_RGB565_MMX: testl $0x01, %ecx je .L01 - movzxw (%eax), %ecx + movzwl (%eax), %ecx movd %ecx, %mm4 pshufw $0x00, %mm4, %mm0 |