diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-07-02 12:18:46 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-07-02 12:18:46 +0000 |
commit | e3506a9f27bb02c48fad7978a446777b047efe51 (patch) | |
tree | 32309d8d7461846c2147e5ef31a1c67d7c0c20eb /gdb/value.c | |
parent | d5c831bd769fa23e1f0d6c7e9ac9efbad0f84a6d (diff) | |
download | gdb-e3506a9f27bb02c48fad7978a446777b047efe51.zip gdb-e3506a9f27bb02c48fad7978a446777b047efe51.tar.gz gdb-e3506a9f27bb02c48fad7978a446777b047efe51.tar.bz2 |
* gdbtypes.c (lookup_array_range_type): Add prototype.
(lookup_string_range_type): Likewise.
* gdbtypes.c (lookup_array_range_type): New function.
(lookup_string_range_type): Likewise.
* ax-gdb.c (gen_repeat): Use lookup_array_range_type.
* parse.c (follow_types): Likewise.
* jv-lang.c (java_array_type): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
* mt-tdep.c (mt_register_type): Likewise.
* sh-tdep.c (sh_sh4_build_float_register_type): Likewise.
* sh64-tdep.c (sh64_build_float_register_type): Likewise.
* value.c (allocate_repeat_value): Likewise.
* valops.c (value_array, value_cstring): Likewise.
* valops.c (value_string): Use lookup_string_range_type.
Diffstat (limited to 'gdb/value.c')
-rw-r--r-- | gdb/value.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/value.c b/gdb/value.c index 01066e9..7b95c42 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -290,13 +290,9 @@ allocate_repeat_value (struct type *type, int count) int low_bound = current_language->string_lower_bound; /* ??? */ /* FIXME-type-allocation: need a way to free this type when we are done with it. */ - struct type *range_type - = create_range_type ((struct type *) NULL, builtin_type_int32, - low_bound, count + low_bound - 1); - /* FIXME-type-allocation: need a way to free this type when we are - done with it. */ - return allocate_value (create_array_type ((struct type *) NULL, - type, range_type)); + struct type *array_type + = lookup_array_range_type (type, low_bound, count + low_bound - 1); + return allocate_value (array_type); } /* Needed if another module needs to maintain its on list of values. */ |