Minor reformatting fix in gdbtypes.c::create_array_type_with_stride

gdb/ChangeLog:

        * gdbtypes.c (create_array_type_with_stride): Fix indentation.
This commit is contained in:
Joel Brobecker 2015-12-21 06:51:50 +04:00
parent c2345c1878
commit b4a7fcab76
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2015-12-21 Joel Brobecker <brobecker@adacore.com>
* gdbtypes.c (create_array_type_with_stride): Fix indentation.
2015-12-19 Joel Brobecker <brobecker@adacore.com> 2015-12-19 Joel Brobecker <brobecker@adacore.com>
* arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing * arch/arm-get-next-pcs.c (arm_get_next_pcs_raw): Remove trailing

View file

@ -1081,8 +1081,8 @@ create_array_type_with_stride (struct type *result_type,
TYPE_CODE (result_type) = TYPE_CODE_ARRAY; TYPE_CODE (result_type) = TYPE_CODE_ARRAY;
TYPE_TARGET_TYPE (result_type) = element_type; TYPE_TARGET_TYPE (result_type) = element_type;
if (has_static_range (TYPE_RANGE_DATA (range_type)) if (has_static_range (TYPE_RANGE_DATA (range_type))
&& (!type_not_associated (result_type) && (!type_not_associated (result_type)
&& !type_not_allocated (result_type))) && !type_not_allocated (result_type)))
{ {
LONGEST low_bound, high_bound; LONGEST low_bound, high_bound;