[DWARF] Delete a stray break and a stray comment. NFC

llvm-svn: 356838
This commit is contained in:
Fangrui Song 2019-03-23 16:15:40 +00:00
parent 9eb0de8573
commit 40483e1831
1 changed files with 1 additions and 2 deletions

View File

@ -201,7 +201,6 @@ void RangeListEntry::dump(
case dwarf::DW_RLE_end_of_list:
OS << (DumpOpts.Verbose ? "" : "<End of list>");
break;
// case dwarf::DW_RLE_base_addressx:
case dwarf::DW_RLE_base_addressx: {
if (auto SA = LookupPooledAddress(Value0))
CurrentBase = SA->Address;
@ -238,7 +237,7 @@ void RangeListEntry::dump(
Start = SA->Address;
DWARFAddressRange(Start, Start + Value1).dump(OS, AddrSize, DumpOpts);
break;
} break;
}
default:
llvm_unreachable("Unsupported range list encoding");
}