[PATCH] D36900: Re-land MachineInstr: Reason locally about some memory objects before going to AA.
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 29 17:45:40 PDT 2017
efriedma accepted this revision.
efriedma added a comment.
This revision is now accepted and ready to land.
Makes sense.
================
Comment at: lib/CodeGen/MachineInstr.cpp:1713
+ if (PSVa && ValB && !PSVa->mayAlias(&MFI))
+ return false;
+ if (PSVb && ValA && !PSVb->mayAlias(&MFI))
----------------
Indentation?
https://reviews.llvm.org/D36900
More information about the llvm-commits
mailing list