Skip to content

Commit

Permalink
Remove else-after-return
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373266 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dwblaikie committed Sep 30, 2019
1 parent 2e62319 commit 766c3df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ class DWARFDebugRangeList {
assert(AddressSize == 4 || AddressSize == 8);
if (AddressSize == 4)
return StartAddress == -1U;
else
return StartAddress == -1ULL;
return StartAddress == -1ULL;
}
};

Expand Down

0 comments on commit 766c3df

Please sign in to comment.