Fix MOVMSKPDrr encoding.

llvm-svn: 72535
This commit is contained in:
Evan Cheng 2009-05-28 18:55:28 +00:00
parent 60618fe4ac
commit cc3ae1f2ff
1 changed files with 1 additions and 1 deletions

View File

@ -953,7 +953,7 @@ let Constraints = "$src1 = $dst" in {
def MOVMSKPSrr : PSI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
"movmskps\t{$src, $dst|$dst, $src}",
[(set GR32:$dst, (int_x86_sse_movmsk_ps VR128:$src))]>;
def MOVMSKPDrr : PSI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
def MOVMSKPDrr : PDI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
"movmskpd\t{$src, $dst|$dst, $src}",
[(set GR32:$dst, (int_x86_sse2_movmsk_pd VR128:$src))]>;