diff options
author | Nate Begeman <natebegeman@mac.com> | 2008-10-29 23:07:17 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2008-10-29 23:07:17 +0000 |
commit | 110e3b3d1b4cedf8d0751c11dab3cc715421afa5 (patch) | |
tree | 5af5d947ea7e8ca804fe9ef0951d8dc7b4219a74 /lib | |
parent | db9734840064890e97c8441ae8d4a7edb4817740 (diff) | |
download | external_llvm-110e3b3d1b4cedf8d0751c11dab3cc715421afa5.zip external_llvm-110e3b3d1b4cedf8d0751c11dab3cc715421afa5.tar.gz external_llvm-110e3b3d1b4cedf8d0751c11dab3cc715421afa5.tar.bz2 |
Fix PEXTRQ encoding
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/X86Instr64bit.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Instr64bit.td b/lib/Target/X86/X86Instr64bit.td index d17ed1a..125eefb 100644 --- a/lib/Target/X86/X86Instr64bit.td +++ b/lib/Target/X86/X86Instr64bit.td @@ -1500,7 +1500,7 @@ def MOVSDto64mr : RPDI<0x7E, MRMDestMem, (outs), (ins i64mem:$dst, FR64:$src), /// SS41I_extract32 - SSE 4.1 extract 32 bits to int reg or memory destination multiclass SS41I_extract64<bits<8> opc, string OpcodeStr> { - def rr : SS4AIi8<opc, MRMSrcReg, (outs GR64:$dst), + def rr : SS4AIi8<opc, MRMDestReg, (outs GR64:$dst), (ins VR128:$src1, i32i8imm:$src2), !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"), |