one line fix by Gregory Lielens <Gregory.Lielens@fft.be> to fix a problem
authorDavid Taylor <taylor@redhat.com>
Tue, 23 May 2000 15:56:33 +0000 (15:56 +0000)
committerDavid Taylor <taylor@redhat.com>
Tue, 23 May 2000 15:56:33 +0000 (15:56 +0000)
with the printing of complex numbers (it would print the real part twice).

gdb/ChangeLog
gdb/f-valprint.c

index 3fd02bd..bfd50c3 100644 (file)
@@ -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.
index a007c87..92a10f2 100644 (file)
@@ -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;