diff src/pt-mvr.h @ 2960:194b50e4725b

[project @ 1997-05-12 00:43:54 by jwe]
author jwe
date Mon, 12 May 1997 00:54:04 +0000
parents 026f342c2019
children
line wrap: on
line diff
--- a/src/pt-mvr.h	Sun May 11 22:53:13 1997 +0000
+++ b/src/pt-mvr.h	Mon May 12 00:54:04 1997 +0000
@@ -133,15 +133,13 @@
 public:
 
   tree_multi_assignment_expression (bool plhs = false, int l = -1, int c = -1)
-    : tree_multi_val_ret (l, c, tree_expression::multi_assignment),
-      preserve (plhs), lhs (0), rhs (0) { }
+    : tree_multi_val_ret (l, c), preserve (plhs), lhs (0), rhs (0) { }
 
   tree_multi_assignment_expression (tree_return_list *lst,
 				    tree_multi_val_ret *r,
 				    bool plhs = false,
 				    int l = -1, int c = -1)
-    : tree_multi_val_ret (l, c, tree_expression::multi_assignment),
-      preserve (plhs), lhs (lst), rhs (r) { }
+    : tree_multi_val_ret (l, c), preserve (plhs), lhs (lst), rhs (r) { }
 
   ~tree_multi_assignment_expression (void);