diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-01-05 05:46:38 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-01-05 05:46:38 +0000 |
commit | 34db6523f350a082645b82c6d622dc249140d0f0 (patch) | |
tree | d9cf9aedd7f742e8bcafb56f2974ca880fd88338 /llvm/utils/TableGen/X86RecognizableInstr.cpp | |
parent | c0107977d9f750770cbe683dc05c9c5c33f4c57f (diff) | |
download | bcm5719-llvm-34db6523f350a082645b82c6d622dc249140d0f0.tar.gz bcm5719-llvm-34db6523f350a082645b82c6d622dc249140d0f0.zip |
Fix encoding for PUSH64i16. Add In64BitMode Predicate. Remove disassembler hack.
llvm-svn: 198547
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp index 8a8e084ad14..c360d866fa7 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.cpp +++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp @@ -509,8 +509,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const { // Special cases. - if (Name == "PUSH64i16" || - Name == "MOVPQI2QImr" || + if (Name == "MOVPQI2QImr" || Name == "VMOVPQI2QImr" || Name == "VMASKMOVDQU64") return FILTER_WEAK; |