Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
[oota-llvm.git] / unittests / ADT / ilistTest.cpp
index 40b44ce3ca994caddef2a7b3cdb0ec70a99cf791..44442ebf75adc69bf8c50dff8460a699f631dd0c 100644 (file)
@@ -21,9 +21,7 @@ struct Node : ilist_node<Node> {
   int Value;
 
   Node() {}
-  Node(int Value) : Value(Value) {}
-  Node(const Node&) = default;
-  Node(Node &&RHS) : Value(RHS.Value) { RHS.Value = -1; }
+  Node(int _Value) : Value(_Value) {}
   ~Node() { Value = -1; }
 };