summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2012-10-12 17:57:35 +0000
committerRichard Trieu <rtrieu@google.com>2012-10-12 17:57:35 +0000
commit562892034651ee4e29c31d03e55e8b8576f56369 (patch)
tree31291e8a4047f82f796d9bdd51c090ebc6fa4ff6 /utils
parent47ed8a161caa898cc00c85c8f8a063a0e18d8915 (diff)
downloadllvm-562892034651ee4e29c31d03e55e8b8576f56369.tar.gz
llvm-562892034651ee4e29c31d03e55e8b8576f56369.tar.bz2
llvm-562892034651ee4e29c31d03e55e8b8576f56369.tar.xz
Change (!list.size() == 0) to (!list.empty()). No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 4e97cf4693..e447c16b16 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -299,7 +299,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
const OperandInfoMapTy &OpInfo,
raw_ostream &OS) {
int MinOperands = 0;
- if (!Inst.Operands.size() == 0)
+ if (!Inst.Operands.empty())
// Each logical operand can be multiple MI operands.
MinOperands = Inst.Operands.back().MIOperandNo +
Inst.Operands.back().MINumOperands;