mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user