forked from OSchip/llvm-project
Revert "[CSSPGO][llvm-profgen] Fix a missing initalization"
This reverts commit fef5f4456a
.
This commit is contained in:
parent
fef5f4456a
commit
597e9c61ce
|
@ -5,7 +5,7 @@
|
|||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#pragma clang optimize off
|
||||
|
||||
#ifndef LLVM_TOOLS_LLVM_PROFGEN_PROFILEDBINARY_H
|
||||
#define LLVM_TOOLS_LLVM_PROFGEN_PROFILEDBINARY_H
|
||||
|
||||
|
@ -100,7 +100,7 @@ class ProfiledBinary {
|
|||
// The target triple.
|
||||
Triple TheTriple;
|
||||
// The runtime base address that the first executable segment is loaded at.
|
||||
uint64_t BaseAddress = 0;
|
||||
uint64_t BaseAddress;
|
||||
// The preferred load address of each executable segment.
|
||||
std::vector<uint64_t> PreferredTextSegmentAddresses;
|
||||
// The file offset of each executable segment.
|
||||
|
|
Loading…
Reference in New Issue