[llvm] [SLP][NFC] Redesign schedule bundle, separate from schedule data, NFC (PR #131625)

Gaƫtan Bossu via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 07:46:00 PDT 2025


================
@@ -3946,16 +3948,17 @@ class BoUpSLP {
   /// is invariant in the calling loop.
   bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1,
                  Instruction *Inst2) {
-    if (!Loc1.Ptr || !isSimple(Inst1) || !isSimple(Inst2))
+    assert(Loc1.Ptr && isSimple(Inst1) && "Expected simple first instrucgion.");
----------------
gbossu wrote:

Nit, Typo: instrucgion

https://github.com/llvm/llvm-project/pull/131625


More information about the llvm-commits mailing list