with the printing of complex numbers (it would print the real part twice).
+Tue May 23 13:20:00 1999 Gregory Lielens <info@fft.be>
+
+ * f-valprint.c : Corrected f_val_print function for TYPE_CODE
+ (type) = TYPE_CODE_COMPLEX
+
Wed May 24 00:38:09 2000 Andrew Cagney <cagney@b1.cygnus.com>
* utils.c (make_cleanup_close, do_close_cleanup): New functions.
fputs_filtered ("(", stream);
print_floating (valaddr, type, stream);
fputs_filtered (",", stream);
- print_floating (valaddr, type, stream);
+ print_floating (valaddr + TYPE_LENGTH (type), type, stream);
fputs_filtered (")", stream);
break;