April 28, 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=118

           Summary: wrong code generation for MOVLHPS
           Product: D
           Version: 0.155
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Keywords: wrong-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


asm{
        movhlps XMM0, XMM1;
}

generates:
0f 16 c8                movlhps XMM1, XMM0

should generate:
0f 16 c1                movlhps XMM0, XMM1

test case: http://dstress.kuehne.cn/run/a/asm_movhlps_01_A.d


-- 

May 25, 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=118


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2006-05-25 04:21 -------
Fixed 0.158


--