[PATCH] D138715: [CodeGen] Add missing copy assignment operator

Alexandre Ganea via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 26 07:41:30 PST 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4c1079c55131: [CodeGen] Add missing copy assignment operator (authored by aganea).

Changed prior to commit:
  https://reviews.llvm.org/D138715?vs=477959&id=478059#toc

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D138715

Files:
  llvm/include/llvm/CodeGen/SelectionDAGNodes.h


Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h
===================================================================
--- llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -758,6 +758,7 @@
 
     use_iterator() = default;
     use_iterator(const use_iterator &I) = default;
+    use_iterator &operator=(const use_iterator &) = default;
 
     bool operator==(const use_iterator &x) const { return Op == x.Op; }
     bool operator!=(const use_iterator &x) const {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138715.478059.patch
Type: text/x-patch
Size: 515 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221126/ba5b28ed/attachment.bin>


More information about the llvm-commits mailing list