diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:58:48 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-10-02 22:58:48 -0700 |
commit | f4a932a6b3f5b829dd0e7cb3a596a7e054fd7144 (patch) | |
tree | 136573d146f66c46124cde724bbe919c07b61bc2 /src/arch/x86/isa | |
parent | 06d2d54b57ae9b5f2d9e65445ada5c90721a101e (diff) | |
download | gem5-f4a932a6b3f5b829dd0e7cb3a596a7e054fd7144.tar.xz |
X86: Fix places where movfp was used incorrectly.
--HG--
extra : convert_revision : a6b5688eaa53d2f6675df1be193726641e558d37
Diffstat (limited to 'src/arch/x86/isa')
-rw-r--r-- | src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py b/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py index ee85a038a..76279fc70 100644 --- a/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py +++ b/src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py @@ -82,8 +82,8 @@ def macroop MOVAPS_P_R { def macroop MOVAPS_R_R { # Check low address. - movfp xmml, xmml, xmmlm, dataSize=8 - movfp xmmh, xmmh, xmmhm, dataSize=8 + movfp xmml, xmmlm, dataSize=8 + movfp xmmh, xmmhm, dataSize=8 }; # MOVAPD @@ -112,7 +112,7 @@ def macroop MOVLPD_P_R { }; def macroop MOVLPD_R_R { - movfp xmml, xmml, xmmlm, dataSize=8 + movfp xmml, xmmlm, dataSize=8 }; # MOVHLPS @@ -140,6 +140,6 @@ def macroop MOVSD_P_R { }; def macroop MOVSD_R_R { - movfp xmml, xmml, xmmlm, dataSize=8 + movfp xmml, xmmlm, dataSize=8 }; ''' |