Remove some obsolete comments
authorTom Tromey <tom@tromey.com>
Sat, 7 Mar 2020 14:53:42 +0000 (07:53 -0700)
committerTom Tromey <tom@tromey.com>
Sat, 7 Mar 2020 14:58:35 +0000 (07:58 -0700)
While working on complex number support, I found a couple of
apparently obsolete coments.  This removes them.

2020-03-07  Tom Tromey  <tom@tromey.com>

* valops.c (value_literal_complex): Remove obsolete comment.
* gdbtypes.h (enum type_code) <TYPE_CODE_FLT>: Remove obsolete
comment.

gdb/ChangeLog
gdb/gdbtypes.h
gdb/valops.c

index 0de37948a084392fc1df5408a34a823234e3ad06..9a25504faaf400301070fd6315654695b779ddfc 100644 (file)
@@ -1,3 +1,9 @@
+2020-03-07  Tom Tromey  <tom@tromey.com>
+
+       * valops.c (value_literal_complex): Remove obsolete comment.
+       * gdbtypes.h (enum type_code) <TYPE_CODE_FLT>: Remove obsolete
+       comment.
+
 2020-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * infrun.h: Forward-declare thread_info.
index 74498435822a9b5320e60fe3a234abb8f61010b4..cb674dbc1e807a756b5f3bd3793bb83f6cd88e32 100644 (file)
@@ -120,9 +120,7 @@ enum type_code
     TYPE_CODE_FUNC,            /**< Function type */
     TYPE_CODE_INT,             /**< Integer type */
 
-    /* * Floating type.  This is *NOT* a complex type.  Beware, there
-       are parts of GDB which bogusly assume that TYPE_CODE_FLT can
-       mean complex.  */
+    /* * Floating type.  This is *NOT* a complex type.  */
     TYPE_CODE_FLT,
 
     /* * Void type.  The length field specifies the length (probably
index 7fc555a81088d9ac457994db70f5b5f030efcdc1..d48474665c3dfa2823b49142cb55c2f2cad6e1c9 100644 (file)
@@ -3856,9 +3856,7 @@ value_slice (struct value *array, int lowbound, int length)
 
 /* Create a value for a FORTRAN complex number.  Currently most of the
    time values are coerced to COMPLEX*16 (i.e. a complex number
-   composed of 2 doubles.  This really should be a smarter routine
-   that figures out precision intelligently as opposed to assuming
-   doubles.  FIXME: fmb  */
+   composed of 2 doubles.  */
 
 struct value *
 value_literal_complex (struct value *arg1,