From: David Blaikie Date: Mon, 30 Sep 2019 21:02:06 +0000 (+0000) Subject: Remove else-after-return X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=766c3dfc984f0b826df0ed2b651aabb7bd2c6d6f;p=llvm Remove else-after-return git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373266 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h b/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h index 9bc01172624..2f72c642a2d 100644 --- a/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h +++ b/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h @@ -53,8 +53,7 @@ public: assert(AddressSize == 4 || AddressSize == 8); if (AddressSize == 4) return StartAddress == -1U; - else - return StartAddress == -1ULL; + return StartAddress == -1ULL; } };