forked from OSchip/llvm-project
[BOLT][Docs] Instructions for linking with jemalloc/tcmalloc
(cherry picked from FBD18050722)
This commit is contained in:
parent
12aca4005c
commit
8fb6512a23
|
@ -1828,11 +1828,8 @@ bool BinaryFunction::buildCFG(MCPlusBuilder::AllocatorIdTy AllocatorId) {
|
||||||
if (!FromBB || !ToBB) {
|
if (!FromBB || !ToBB) {
|
||||||
if (!FromBB)
|
if (!FromBB)
|
||||||
errs() << "BOLT-ERROR: cannot find BB containing the branch.\n";
|
errs() << "BOLT-ERROR: cannot find BB containing the branch.\n";
|
||||||
if (!ToBB) {
|
if (!ToBB)
|
||||||
dbgs() << "registering branch [0x" << Twine::utohexstr(Branch.first)
|
|
||||||
<< "] -> [0x" << Twine::utohexstr(Branch.second) << "]\n";
|
|
||||||
errs() << "BOLT-ERROR: cannot find BB containing branch destination.\n";
|
errs() << "BOLT-ERROR: cannot find BB containing branch destination.\n";
|
||||||
}
|
|
||||||
BC.exitWithBugReport("disassembly failed - inconsistent branch found.",
|
BC.exitWithBugReport("disassembly failed - inconsistent branch found.",
|
||||||
*this);
|
*this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue