summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/X86RecognizableInstr.cpp
diff options
context:
space:
mode:
authorLiang Zou <liangdzou@gmail.com>2019-03-31 14:49:00 +0000
committerLiang Zou <liangdzou@gmail.com>2019-03-31 14:49:00 +0000
commit9f4a4d39749ec48c9c14d2a7a7dcd025a2a7516a (patch)
tree8475e603f7e8204d62086442c9f057b77c140c56 /llvm/utils/TableGen/X86RecognizableInstr.cpp
parent7b36a86431e2677bdcc3d62fa7e6ab0f8f1db237 (diff)
downloadbcm5719-llvm-9f4a4d39749ec48c9c14d2a7a7dcd025a2a7516a.tar.gz
bcm5719-llvm-9f4a4d39749ec48c9c14d2a7a7dcd025a2a7516a.zip
fix typo: "\t" => " "
Reviewers: llvm.org, Jim Reviewed By: Jim Subscribers: arsenm, jvesely, nhaehnle, rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59983 llvm-svn: 357365
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r--llvm/utils/TableGen/X86RecognizableInstr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp
index 5b040644553..3c537e9176c 100644
--- a/llvm/utils/TableGen/X86RecognizableInstr.cpp
+++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp
@@ -109,7 +109,7 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
std::vector<Record*> Predicates = Rec->getValueAsListOfDefs("Predicates");
for (unsigned i = 0, e = Predicates.size(); i != e; ++i) {
if (Predicates[i]->getName().find("Not64Bit") != Name.npos ||
- Predicates[i]->getName().find("In32Bit") != Name.npos) {
+ Predicates[i]->getName().find("In32Bit") != Name.npos) {
Is32Bit = true;
break;
}
OpenPOWER on IntegriCloud