forked from OSchip/llvm-project
[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:
parent
597e9c61ce
commit
6b04ecaab3
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue