[PATCH] D130881: [SelectionDAG] Properly copy ExtraInfo on RAUW
Vitaly Buka via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 10 11:05:23 PDT 2022
vitalybuka accepted this revision.
vitalybuka added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:11819
+void SelectionDAG::copyExtraInfo(SDNode *From, SDNode *To) {
+ assert(From && To);
+ auto I = SDEI.find(From);
----------------
this assert is inconsistent with the rest of the code
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130881/new/
https://reviews.llvm.org/D130881
More information about the llvm-commits
mailing list