[llvm] [BOLT][NFC] Fix an incorrect address used in a BOLT-INFO message (PR #127902)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 13:38:51 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-bolt
Author: YongKang Zhu (yozhu)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/127902.diff
1 Files Affected:
- (modified) bolt/lib/RuntimeLibs/InstrumentationRuntimeLibrary.cpp (+1-1)
``````````diff
diff --git a/bolt/lib/RuntimeLibs/InstrumentationRuntimeLibrary.cpp b/bolt/lib/RuntimeLibs/InstrumentationRuntimeLibrary.cpp
index f3199ebb00b3d..217b4f23e8572 100644
--- a/bolt/lib/RuntimeLibs/InstrumentationRuntimeLibrary.cpp
+++ b/bolt/lib/RuntimeLibs/InstrumentationRuntimeLibrary.cpp
@@ -219,7 +219,7 @@ void InstrumentationRuntimeLibrary::link(
}
outs() << "BOLT-INFO: output linked against instrumentation runtime "
"library, lib entry point is 0x"
- << Twine::utohexstr(RuntimeFiniAddress) << "\n";
+ << Twine::utohexstr(RuntimeStartAddress) << "\n";
outs() << "BOLT-INFO: clear procedure is 0x"
<< Twine::utohexstr(
Linker.lookupSymbol("__bolt_instr_clear_counters").value_or(0))
``````````
</details>
https://github.com/llvm/llvm-project/pull/127902
More information about the llvm-commits
mailing list