changeset 1616:ac7e10016ca0

[project @ 1995-11-03 15:26:11 by jwe]
author jwe
date Fri, 03 Nov 1995 15:26:11 +0000
parents da72f1fae389
children 14d95b8282d7
files src/pt-const.h
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/pt-const.h	Fri Nov 03 15:22:18 1995 +0000
+++ b/src/pt-const.h	Fri Nov 03 15:26:11 1995 +0000
@@ -609,11 +609,11 @@
 
   tree_constant eval (int print_result)
     {
-      if (! is_scalar_type ())
-	rep->maybe_mutate ();
-
       if (print_result)
-	print ();
+	{
+	  rep->maybe_mutate ();  // XXX FIXME XXX -- is this necessary?
+	  print ();
+	}
 
       return *this;
     }