summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-02 22:58:48 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-02 22:58:48 -0700
commitf4a932a6b3f5b829dd0e7cb3a596a7e054fd7144 (patch)
tree136573d146f66c46124cde724bbe919c07b61bc2 /src
parent06d2d54b57ae9b5f2d9e65445ada5c90721a101e (diff)
downloadgem5-f4a932a6b3f5b829dd0e7cb3a596a7e054fd7144.tar.xz
X86: Fix places where movfp was used incorrectly.
--HG-- extra : convert_revision : a6b5688eaa53d2f6675df1be193726641e558d37
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py8
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
};
'''