File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -823,7 +823,6 @@ decodeBBAddrMapImpl(const ELFFile<ELFT> &EF,
823
823
uint32_t NumBlocksInBBRange = 0 ;
824
824
uint32_t NumBBRanges = 1 ;
825
825
typename ELFFile<ELFT>::uintX_t RangeBaseAddress = 0 ;
826
- std::vector<BBAddrMap::BBEntry> BBEntries;
827
826
if (FeatEnable.MultiBBRange ) {
828
827
NumBBRanges = readULEB128As<uint32_t >(Data, Cur, ULEBSizeErr);
829
828
if (!Cur || ULEBSizeErr)
@@ -851,6 +850,7 @@ decodeBBAddrMapImpl(const ELFFile<ELFT> &EF,
851
850
RangeBaseAddress = *AddressOrErr;
852
851
NumBlocksInBBRange = readULEB128As<uint32_t >(Data, Cur, ULEBSizeErr);
853
852
}
853
+ std::vector<BBAddrMap::BBEntry> BBEntries;
854
854
for (uint32_t BlockIndex = 0 ; !MetadataDecodeErr && !ULEBSizeErr && Cur &&
855
855
(BlockIndex < NumBlocksInBBRange);
856
856
++BlockIndex) {
You can’t perform that action at this time.
0 commit comments