diff options
author | Dan Gohman <gohman@apple.com> | 2008-01-29 13:02:09 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-01-29 13:02:09 +0000 |
commit | 303595942502f17c087fa28874c2b89117148c45 (patch) | |
tree | 75e904f611c8a27f2ed75866eb2cabe4e9468141 /lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 9f65c39f806186e1bbe1c9e4b670d198c69a81c1 (diff) |
Use empty() instead of comparing size() with zero.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index 2d16230bb9..ec71ba4e9c 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1327,7 +1327,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) { } case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>] - if (Record.size() == 0) { + if (Record.empty()) { I = new ReturnInst(); break; } else { |