[PATCH] D111317: [DebugInfo][InstrRef] Track instructions that write-to-stack after having a spill fused into them

Jeremy Morse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 11 10:18:02 PDT 2021


jmorse added inline comments.


================
Comment at: llvm/lib/CodeGen/LiveDebugValues/InstrRefBasedImpl.h:911
+           MemOperand->getPseudoValue()->kind() == PseudoSourceValue::FixedStack
+           && MemOperand->getPseudoValue()->isAliased(MFI);
+  }
----------------
Should be `!isAliased` lost the inversion in copy+paste, happily the test catches this.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D111317



More information about the llvm-commits mailing list