mirror of
https://github.com/intel/llvm.git
synced 2026-01-18 16:50:51 +08:00
[BOLT] Get rid of BinarySection::IsLocal
Summary: The flag is no longer used/needed. (cherry picked from FBD19951571)
This commit is contained in:
@@ -67,7 +67,7 @@ uint8_t *ExecutableFileMemoryManager::allocateSection(intptr_t Size,
|
||||
assert(Section.isAllocatable() &&
|
||||
"verify that allocatable is marked as allocatable");
|
||||
|
||||
DEBUG(dbgs() << "BOLT: allocating " << (Section.isLocal() ? "local " : "")
|
||||
DEBUG(dbgs() << "BOLT: allocating "
|
||||
<< (IsCode ? "code" : (IsReadOnly ? "read-only data" : "data"))
|
||||
<< " section : " << SectionName
|
||||
<< " with size " << Size << ", alignment " << Alignment
|
||||
|
||||
Reference in New Issue
Block a user