summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVladimir Medic <Vladimir.Medic@imgtec.com>2013-08-01 09:25:27 +0000
committerVladimir Medic <Vladimir.Medic@imgtec.com>2013-08-01 09:25:27 +0000
commit588f408b95c83e9b59c0777925d2ae70ac445fae (patch)
tree8d470e691fbc15c6b1453e0c314130bf8f71d81e /include
parent87773c318fcee853fb34a80a10c4347d523bdafb (diff)
downloadllvm-588f408b95c83e9b59c0777925d2ae70ac445fae.tar.gz
llvm-588f408b95c83e9b59c0777925d2ae70ac445fae.tar.bz2
llvm-588f408b95c83e9b59c0777925d2ae70ac445fae.tar.xz
Moving definition of MnemonicContainsDot field from class Instruction to class AsmParser as suggested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/Target.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td
index 82cd4dd914..89ca529d53 100644
--- a/include/llvm/Target/Target.td
+++ b/include/llvm/Target/Target.td
@@ -444,9 +444,6 @@ class Instruction {
/// constraint. For example, "$Rn = $Rd".
string TwoOperandAliasConstraint = "";
- /// Does the instruction mnemonic allow '.'
- bit MnemonicContainsDot = 0;
-
///@}
/// UseNamedOperandTable - If set, the operand indices of this instruction
@@ -821,6 +818,9 @@ class AsmParser {
// ShouldEmitMatchRegisterName - Set to false if the target needs a hand
// written register name matcher
bit ShouldEmitMatchRegisterName = 1;
+
+ /// Does the instruction mnemonic allow '.'
+ bit MnemonicContainsDot = 0;
}
def DefaultAsmParser : AsmParser;