Simplify. NFC.

llvm-svn: 241458
This commit is contained in:
Rafael Espindola 2015-07-06 15:53:43 +00:00
parent 88205302c1
commit c7689300bb
1 changed files with 1 additions and 3 deletions

View File

@ -199,9 +199,7 @@ bool error(std::error_code EC) {
} }
bool relocAddressLess(RelocationRef a, RelocationRef b) { bool relocAddressLess(RelocationRef a, RelocationRef b) {
uint64_t a_addr = a.getOffset(); return a.getOffset() < b.getOffset();
uint64_t b_addr = b.getOffset();
return a_addr < b_addr;
} }
} // namespace llvm } // namespace llvm