Fix a bug that caused SimplifyCFG to drop DebugLocs.
[oota-llvm.git] / unittests / ADT / ilistTest.cpp
index 44442ebf75adc69bf8c50dff8460a699f631dd0c..9127b05b4b8fdbd8340d10e533778ef9af7228a7 100644 (file)
@@ -21,7 +21,8 @@ struct Node : ilist_node<Node> {
   int Value;
 
   Node() {}
-  Node(int _Value) : Value(_Value) {}
+  Node(int Value) : Value(Value) {}
+  Node(const Node&) = default;
   ~Node() { Value = -1; }
 };