[llvm] [CodeGen] Introduce Static Data Splitter pass (PR #122183)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 10 11:22:13 PST 2025
================
@@ -28,15 +28,17 @@ namespace llvm {
class MachineBasicBlock;
class DataLayout;
class raw_ostream;
+enum class DataHotness;
/// MachineJumpTableEntry - One jump table in the jump table info.
///
struct MachineJumpTableEntry {
/// MBBs - The vector of basic blocks from which to create the jump table.
std::vector<MachineBasicBlock*> MBBs;
- explicit MachineJumpTableEntry(const std::vector<MachineBasicBlock*> &M)
- : MBBs(M) {}
+ DataHotness Hotness;
----------------
snehasish wrote:
Add a comment for the new member.
https://github.com/llvm/llvm-project/pull/122183
More information about the llvm-commits
mailing list