[llvm-branch-commits] [llvm] [BOLT][NFC] Pass BF/BB hashes to BAT (PR #76906)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Jan 3 21:28:02 PST 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 8cf8215c0173bea7908d0641ed3b4360e2756be1 1e2b86ac93cca125c9f93f33ee63bc5497d55935 -- bolt/include/bolt/Profile/BoltAddressTranslation.h bolt/lib/Profile/BoltAddressTranslation.cpp bolt/lib/Rewrite/RewriteInstance.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/bolt/lib/Profile/BoltAddressTranslation.cpp b/bolt/lib/Profile/BoltAddressTranslation.cpp
index e8f7e85bcc..2d1071df29 100644
--- a/bolt/lib/Profile/BoltAddressTranslation.cpp
+++ b/bolt/lib/Profile/BoltAddressTranslation.cpp
@@ -432,7 +432,8 @@ void BoltAddressTranslation::saveMetadata(BinaryContext &BC) {
FuncHashes[BF.getAddress()].first = BF.computeHash();
BF.computeBlockHashes();
for (const BinaryBasicBlock &BB : BF)
- FuncHashes[BF.getAddress()].second.emplace(BB.getInputOffset(), BB.getHash());
+ FuncHashes[BF.getAddress()].second.emplace(BB.getInputOffset(),
+ BB.getHash());
}
}
} // namespace bolt
``````````
</details>
https://github.com/llvm/llvm-project/pull/76906
More information about the llvm-branch-commits
mailing list