[PATCH] D36351: [lld][ELF] Add profile guided section layout

Rafael Avila de Espindola via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 2 18:28:28 PDT 2018


espindola added inline comments.


================
Comment at: ELF/CallGraphSort.cpp:148
+
+bool Edge::operator==(const Edge &Other) const {
+  return From == Other.From && To == Other.To;
----------------
espindola wrote:
> Define this inline.
Actually, it is only called once. Inline it.



https://reviews.llvm.org/D36351





More information about the llvm-commits mailing list