[PATCH] D119892: [lld-macho][nfc] Factor out callgraph parsing code

Vy Nguyen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 15 14:21:00 PST 2022


oontvoo added inline comments.


================
Comment at: lld/MachO/InputFiles.cpp:278-282
+    callGraph.emplace_back();
+    CallGraphEntry &entry = callGraph.back();
+    entry.fromIndex = fromIndex;
+    entry.toIndex = toIndex;
+    entry.count = count;
----------------
not your change but since you're here, how about this?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D119892



More information about the llvm-commits mailing list