[PATCH] D80161: [CodeGen] Add support for multiple memory operands in MachineInstr::mayAlias

Dave Green via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 19 01:03:25 PDT 2020


dmgreen added inline comments.


================
Comment at: llvm/lib/CodeGen/MachineInstr.cpp:1280
+        int64_t LowWidth = (MinOffset == OffsetA) ? WidthA : WidthB;
+        return (MinOffset + LowWidth > MaxOffset);
+      }
----------------
It would seem incorrect to return false here now? Same for the pseudo values above.


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

https://reviews.llvm.org/D80161





More information about the llvm-commits mailing list