[PATCH] D117951: [SLP] Optimize reschedule of previously scheduled bundle member [NFC]

Philip Reames via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 27 14:02:33 PST 2022


reames added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:2599
+    void unschedule(ScheduleData *SD) {
+      assert(SD && SD->isSchedulingEntity() && SD->IsScheduled);
+      LLVM_DEBUG(dbgs() << "SLP:   unschedule " << *SD << "\n");
----------------
ABataev wrote:
> reames wrote:
> > ABataev wrote:
> > > Asserting message?
> > Doesn't seem to add any value and we are inconsistent about them across codebase.
> > 
> > I really don't care here, if you want it added, please give me wording and I'll copy-and-paste.  
> We try to add messages in a new/modified code.
This is not in the programming manual.  I checked.


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

https://reviews.llvm.org/D117951



More information about the llvm-commits mailing list