diff options
author | Richard Trieu <rtrieu@google.com> | 2012-10-12 17:57:35 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2012-10-12 17:57:35 +0000 |
commit | 562892034651ee4e29c31d03e55e8b8576f56369 (patch) | |
tree | 31291e8a4047f82f796d9bdd51c090ebc6fa4ff6 /utils/TableGen | |
parent | 47ed8a161caa898cc00c85c8f8a063a0e18d8915 (diff) |
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/TableGen')
-rw-r--r-- | utils/TableGen/InstrInfoEmitter.cpp | 2 |
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; |