diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-05-28 18:48:53 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-05-28 18:48:53 +0000 |
commit | abfed47439e309a259587147da76053cb2601813 (patch) | |
tree | fa838fb0c6c87831c13f78f76d0481c4466cdf91 | |
parent | f98ca6bcea7231a1cea2f2b7f7d04211d605d4f6 (diff) | |
download | external_llvm-abfed47439e309a259587147da76053cb2601813.zip external_llvm-abfed47439e309a259587147da76053cb2601813.tar.gz external_llvm-abfed47439e309a259587147da76053cb2601813.tar.bz2 |
Fix PSIGND encoding bug. Patch by Sean Callanan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72534 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrSSE.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 2e791a8..95af506 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -2758,7 +2758,7 @@ defm PSIGNB : SS3I_binop_rm_int_8 <0x08, "psignb", defm PSIGNW : SS3I_binop_rm_int_16<0x09, "psignw", int_x86_ssse3_psign_w, int_x86_ssse3_psign_w_128>; -defm PSIGND : SS3I_binop_rm_int_32<0x09, "psignd", +defm PSIGND : SS3I_binop_rm_int_32<0x0A, "psignd", int_x86_ssse3_psign_d, int_x86_ssse3_psign_d_128>; |