Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/SSE2/ConvertSD2SI.cs
Trivalik_cp 591e20c7ec add convertSD2SI, mov double dupplicate (without 64 bit support no other way found)
fix conv.i4 for case:    double k = 50.5; int k2 = (int)k;
2011-05-24 20:28:57 +00:00

7 lines
No EOL
149 B
C#

namespace Cosmos.Compiler.Assembler.X86.SSE
{
[OpCode("CVTSD2SI")]
public class ConvertSD2SI : InstructionWithDestinationAndSource
{
}
}