[llvm] [BOLT][AArch64] Support cdsplit for AArch64 (PR #121475)

Paschalis Mpeis via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 23 01:15:27 PST 2025


================
@@ -676,7 +676,7 @@ class BinaryBasicBlock {
 
   bool isWarm() const { return Fragment == FragmentNum::warm(); }
 
-  bool isHot() const { return Fragment == FragmentNum::main(); }
+  bool isMain() const { return Fragment == FragmentNum::main(); }
----------------
paschalis-mpeis wrote:

I'm not sure whether it is preferred to change `isHot` to `isMain` here.

https://github.com/llvm/llvm-project/pull/121475


More information about the llvm-commits mailing list