2005-02-07 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / jv-valprint.c
index 040b3038000e9a99004a1972b4e6a85169f2e4b9..2d20805e0e11392ac60898d80e1fd9a0b589f9b5 100644 (file)
@@ -162,7 +162,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
                }
              else
                {
-                 VALUE_LAZY (v) = 1;
+                 set_value_lazy (v, 1);
                  v->offset = 0;
                }
 
@@ -170,7 +170,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
 
              for (reps = 1; i + reps < length; reps++)
                {
-                 VALUE_LAZY (next_v) = 1;
+                 set_value_lazy (next_v, 1);
                  next_v->offset += TYPE_LENGTH (el_type);
                  if (memcmp (value_contents (v), value_contents (next_v),
                              TYPE_LENGTH (el_type)) != 0)
This page took 0.023357 seconds and 4 git commands to generate.