From: Gabe Black Date: Wed, 3 Oct 2007 05:58:48 +0000 (-0700) Subject: X86: Fix places where movfp was used incorrectly. X-Git-Tag: m5_2.0_beta4~76 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f4a932a6b3f5b829dd0e7cb3a596a7e054fd7144;p=gem5.git X86: Fix places where movfp was used incorrectly. --HG-- extra : convert_revision : a6b5688eaa53d2f6675df1be193726641e558d37 --- 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 }; '''