diff options
author | Roland Scheidegger <[email protected]> | 2007-08-30 18:04:49 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2007-08-31 00:06:30 +0200 |
commit | 0adca14536fd1c08d4fe0009292c8f4a43092d11 (patch) | |
tree | 0837883ed7ac3999aee45f636d88bc21bc652d61 | |
parent | 57b0f66c6d1213f40061f32f0be2be7aa034033d (diff) |
fix another occurence of movaps which might not be aligned
-rw-r--r-- | src/mesa/x86-64/xform4.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86-64/xform4.S b/src/mesa/x86-64/xform4.S index 70e41c7409f..f512b3ac6d4 100644 --- a/src/mesa/x86-64/xform4.S +++ b/src/mesa/x86-64/xform4.S @@ -147,7 +147,7 @@ _mesa_x86_64_transform_points4_3d: p4_3d_loop: - movaps (%rdx), %xmm8 /* ox | oy | oz | ow */ + movups (%rdx), %xmm8 /* ox | oy | oz | ow */ prefetchw 16(%rdi) pshufd $0x00, %xmm8, %xmm0 /* ox | ox | ox | ox */ |