Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bolt/lib/Rewrite/RewriteInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,9 @@ void RewriteInstance::discoverFileObjects() {

// Annotate functions with code/data markers in AArch64
for (auto &[Address, Type] : MarkerSymbols) {
auto *BF = BC->getBinaryFunctionContainingAddress(Address, true, true);
auto *BF = BC->getBinaryFunctionContainingAddress(Address,
/*CheckPastEnd*/ false,
/*UseMaxSize*/ true);

if (!BF) {
// Stray marker
Expand Down
Loading