diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-01-31 07:00:55 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-01-31 07:00:55 +0000 |
commit | ec68866f5566bc071770d800350de05ddb58e555 (patch) | |
tree | 5e23ec9901743918bc725bcb1251ff5479794048 /llvm/utils/TableGen/X86RecognizableInstr.h | |
parent | d0d01c66ba0105090b58d1eec8cc3df4d4aa321e (diff) | |
download | bcm5719-llvm-ec68866f5566bc071770d800350de05ddb58e555.tar.gz bcm5719-llvm-ec68866f5566bc071770d800350de05ddb58e555.zip |
Move REP out of the Prefix field of the X86 format. Give it its own bit. It had special handling anyway and this enables a future patch.
llvm-svn: 200520
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.h')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.h b/llvm/utils/TableGen/X86RecognizableInstr.h index 08e984e9509..bf758ed2bbd 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.h +++ b/llvm/utils/TableGen/X86RecognizableInstr.h @@ -78,6 +78,8 @@ private: bool HasEVEX_B; /// The hasLockPrefix field from the record bool HasLockPrefix; + /// The hasREPPrefix field from the record + bool HasREPPrefix; /// The isCodeGenOnly field from the record bool IsCodeGenOnly; /// The ForceDisassemble field from the record |