[PATCH] D93082: Append ".__part.<ID>" to all basic block section symbols.

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 22 16:06:06 PST 2020


MaskRay added inline comments.


================
Comment at: llvm/lib/CodeGen/MachineBasicBlock.cpp:77
+        // the original function.
+        Suffix += ".__part." + std::to_string(SectionID.Number);
       }
----------------
`Suffix = (Suffix + Twine(".__part.") + Twine(SectionID.Number)).str();`


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D93082/new/

https://reviews.llvm.org/D93082



More information about the llvm-commits mailing list