[CSSPGO][llvm-profgen] Fix a missing initalization

Fixing a missing initalization that accidentaly caused by https://reviews.llvm.org/D103178 .
This commit is contained in:
Hongtao Yu 2021-07-13 19:49:50 -07:00
parent 597e9c61ce
commit 6b04ecaab3
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class ProfiledBinary {
// The target triple. // The target triple.
Triple TheTriple; Triple TheTriple;
// The runtime base address that the first executable segment is loaded at. // The runtime base address that the first executable segment is loaded at.
uint64_t BaseAddress; uint64_t BaseAddress = 0;
// The preferred load address of each executable segment. // The preferred load address of each executable segment.
std::vector<uint64_t> PreferredTextSegmentAddresses; std::vector<uint64_t> PreferredTextSegmentAddresses;
// The file offset of each executable segment. // The file offset of each executable segment.