Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/SSE3/MoveDoubleAndDupplicate.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
159 B
C#

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