* valops.c (value_cast, value_slice), parse.c (follow_types): Add
[binutils-gdb.git] / gdb / parse.c
index daa0ae60d76843345f56455ac98156eada6aaf39..36f7c3917b4d23d9a2c23bf0a5fe4587900ddb20 100644 (file)
@@ -875,6 +875,8 @@ follow_types (follow_type)
        break;
       case tp_array:
        array_size = pop_type_int ();
+       /* FIXME-type-allocation: need a way to free this type when we are
+          done with it.  */
        range_type =
          create_range_type ((struct type *) NULL,
                             builtin_type_int, 0,
@@ -887,6 +889,8 @@ follow_types (follow_type)
            = BOUND_CANNOT_BE_DETERMINED;
        break;
       case tp_function:
+       /* FIXME-type-allocation: need a way to free this type when we are
+          done with it.  */
        follow_type = lookup_function_type (follow_type);
        break;
       }