Author: zoltan
Date: 2005-03-08 04:28:19 -0500 (Tue, 08 Mar 2005)
New Revision: 41554

Modified:
   trunk/mono/mono/arch/ChangeLog
   trunk/mono/mono/arch/amd64/amd64-codegen.h
Log:
2005-03-08  Zoltan Varga  <[EMAIL PROTECTED]>

        * amd64/amd64-codegen.h (amd64_sse_cvtsd2si_reg_reg): Make this convert
        to a 64 bit value.


Modified: trunk/mono/mono/arch/ChangeLog
===================================================================
--- trunk/mono/mono/arch/ChangeLog      2005-03-08 09:20:03 UTC (rev 41553)
+++ trunk/mono/mono/arch/ChangeLog      2005-03-08 09:28:19 UTC (rev 41554)
@@ -1,3 +1,8 @@
+2005-03-08  Zoltan Varga  <[EMAIL PROTECTED]>
+
+       * amd64/amd64-codegen.h (amd64_sse_cvtsd2si_reg_reg): Make this convert
+       to a 64 bit value.
+
 2005-03-06  Zoltan Varga  <[EMAIL PROTECTED]>
 
        * amd64/amd64-codegen.h: Add some SSE2 instructions.

Modified: trunk/mono/mono/arch/amd64/amd64-codegen.h
===================================================================
--- trunk/mono/mono/arch/amd64/amd64-codegen.h  2005-03-08 09:20:03 UTC (rev 
41553)
+++ trunk/mono/mono/arch/amd64/amd64-codegen.h  2005-03-08 09:28:19 UTC (rev 
41554)
@@ -544,9 +544,9 @@
 
 #define amd64_sse_comisd_reg_membase(inst,dreg,basereg,disp) 
emit_sse_reg_membase ((inst), (dreg), (basereg), (disp), 0x66, 0x0f, 0x2f)
 
-#define amd64_sse_cvtsd2si_reg_reg(inst,dreg,reg) emit_sse_reg_reg_size 
((inst), (dreg), (reg), 0xf2, 0x0f, 0x2d, 0)
+#define amd64_sse_cvtsd2si_reg_reg(inst,dreg,reg) emit_sse_reg_reg_size 
((inst), (dreg), (reg), 0xf2, 0x0f, 0x2d, 8)
 
-#define amd64_sse_cvttsd2si_reg_reg(inst,dreg,reg) emit_sse_reg_reg_size 
((inst), (dreg), (reg), 0xf2, 0x0f, 0x2c, 0)
+#define amd64_sse_cvttsd2si_reg_reg(inst,dreg,reg) emit_sse_reg_reg_size 
((inst), (dreg), (reg), 0xf2, 0x0f, 0x2c, 8)
 
 #define amd64_sse_cvtsi2sd_reg_reg(inst,dreg,reg) emit_sse_reg_reg_size 
((inst), (dreg), (reg), 0xf2, 0x0f, 0x2a, 8)
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to