[PATCH] D47654: [MachineOutliner] NFC - Move intermediate data structures to MachineOutliner.h

Jessica Paquette via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 1 16:28:44 PDT 2018


paquette marked 2 inline comments as done.
paquette added inline comments.


================
Comment at: lib/CodeGen/MachineOutliner.cpp:1217
     // Was the candidate removed during pruneOverlaps?
-    if (!C.InCandidateList)
+    if (!Cptr || !Cptr->InCandidateList)
       continue;
----------------
efriedma wrote:
> Is this change related somehow?  It's not obvious.
That was from some early experimentation with the patch and accidentally made it in... Removed it.


https://reviews.llvm.org/D47654





More information about the llvm-commits mailing list