[llvm] [CodeGen] Preserved additional analyses in StackSlotColoring pass. (PR #93779)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu May 30 03:18:23 PDT 2024
================
@@ -152,6 +154,14 @@ namespace {
AU.addRequired<MachineBlockFrequencyInfo>();
AU.addPreserved<MachineBlockFrequencyInfo>();
AU.addPreservedID(MachineDominatorsID);
+
+ // As in some Target's pipeline, register allocation (RA) might be
+ // splitted into multiple phases based on register class. So, this pass
----------------
arsenm wrote:
```suggestion
// In some Target's pipeline, register allocation (RA) might be
// split into multiple phases based on register class. So, this pass
```
Grammar
https://github.com/llvm/llvm-project/pull/93779
More information about the llvm-commits
mailing list