one line fix by Gregory Lielens <Gregory.Lielens@fft.be> to fix a problem
with the printing of complex numbers (it would print the real part twice).
This commit is contained in:
parent
f5ff8c83c8
commit
9af9729377
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
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.
|
||||
|
|
|
@ -564,7 +564,7 @@ f_val_print (type, valaddr, embedded_offset, address, stream, format, deref_ref,
|
|||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue