diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-07-30 06:48:11 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-07-30 06:48:11 +0000 |
commit | 49d86c9eb95bf0233cf749c79f0e10d03f33c58e (patch) | |
tree | 2648f6d6fa228972b7c5fa2f151e4e37a0b1464e /utils/TableGen/X86RecognizableInstr.cpp | |
parent | 95c929f45c01054d91a6878de22892675dd115cf (diff) |
Mark MOVZX32_NOREX as isCodeGenOnly and neverHasSideEffects. The isCodeGenOnly change allows special detection of _NOREX instructions to be removed from tablegen disassembler code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160951 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | utils/TableGen/X86RecognizableInstr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index 12ad0f2125..7ac2336d73 100644 --- a/utils/TableGen/X86RecognizableInstr.cpp +++ b/utils/TableGen/X86RecognizableInstr.cpp @@ -405,8 +405,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const { // printed as a separate "instruction". if (Name.find("_Int") != Name.npos || - Name.find("Int_") != Name.npos || - Name.find("_NOREX") != Name.npos) + Name.find("Int_") != Name.npos) return FILTER_STRONG; // Filter out instructions with segment override prefixes. |