2011-02-27 Michael Snyder <msnyder@vmware.com>
+ * d-valprint.c (dynamic_array_type): Avoid shadowing a function
+ param with a local variable of the same name.
+
+2011-02-27 Michael Snyder <msnyder@vmware.com>
+
* value.c (value_from_history_ref): New function.
* value.h (value_from_history_ref): Export.
* cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
struct type *elttype;
struct type *true_type;
struct type *ptr_type;
- struct value *val;
+ struct value *ival;
int length;
length = unpack_field_as_long (type, valaddr + embedded_offset, 0);
true_type = check_typedef (elttype);
true_type = lookup_array_range_type (true_type, 0, length - 1);
- val = value_at (true_type, addr);
+ ival = value_at (true_type, addr);
return d_val_print (true_type,
- value_contents_for_printing (val),
- value_embedded_offset (val), addr,
- stream, recurse + 1, val, options);
+ value_contents_for_printing (ival),
+ value_embedded_offset (ival), addr,
+ stream, recurse + 1, ival, options);
}
return -1;
}