https://bugs.llvm.org/show_bug.cgi?id=43630

            Bug ID: 43630
           Summary: [X86] Second k-register result of vp2intersect does
                    not get added to clobber list for ms style inline
                    assembly
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Backend: X86
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected]

The vp2intersect instruction writes 2 consecutive k-registers. But only one is
listed in the assembly string. The clobber list is inferred from the parsed
operands list, but only the one operand will be present there.

Example test

void t1() {
  __asm vp2intersectq k0, xmm0, xmm1
}


Produces 

tail call void asm sideeffect inteldialect "vp2intersectq k0, xmm0, xmm1",
"~{k0},~{dirflag},~{fpsr},~{flags}"(

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to