]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/symtab] Fix indentation in create_cus_from_debug_names_list
authorTom de Vries <tdevries@suse.de>
Fri, 5 Feb 2021 08:14:25 +0000 (09:14 +0100)
committerTom de Vries <tdevries@suse.de>
Fri, 5 Feb 2021 08:14:25 +0000 (09:14 +0100)
Fix indentation in !map.augmentation_is_gdb part of
create_cus_from_debug_names_list.

gdb/ChangeLog:

2021-02-05  Tom de Vries  <tdevries@suse.de>

* dwarf2/read.c (create_cus_from_debug_names_list): Fix indentation.

gdb/ChangeLog
gdb/dwarf2/read.c

index d729b0e28d57befdf87719de0f71b3b4152ded2f..75584a794b165876a6c201e48815e441eb912541 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-05  Tom de Vries  <tdevries@suse.de>
+
+       * dwarf2/read.c (create_cus_from_debug_names_list): Fix indentation.
+
 2021-02-04  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.tgt (riscv*-*-*): Set gdb_sim.
index 5f894895cdc47b7e33846e3a95019f74409569b5..eb058510867322e4d6035a5a1f218aa182892c59 100644 (file)
@@ -5333,21 +5333,23 @@ create_cus_from_debug_names_list (dwarf2_per_bfd *per_bfd,
 {
   if (!map.augmentation_is_gdb)
     {
-    for (uint32_t i = 0; i < map.cu_count; ++i)
-      {
-       sect_offset sect_off
-         = (sect_offset) (extract_unsigned_integer
-                          (map.cu_table_reordered + i * map.offset_size,
-                           map.offset_size,
-                           map.dwarf5_byte_order));
-       /* We don't know the length of the CU, because the CU list in a
-          .debug_names index can be incomplete, so we can't use the start of
-          the next CU as end of this CU.  We create the CUs here with length 0,
-          and in cutu_reader::cutu_reader we'll fill in the actual length.  */
-       dwarf2_per_cu_data *per_cu
-         = create_cu_from_index_list (per_bfd, &section, is_dwz, sect_off, 0);
-       per_bfd->all_comp_units.push_back (per_cu);
-      }
+      for (uint32_t i = 0; i < map.cu_count; ++i)
+       {
+         sect_offset sect_off
+           = (sect_offset) (extract_unsigned_integer
+                            (map.cu_table_reordered + i * map.offset_size,
+                             map.offset_size,
+                             map.dwarf5_byte_order));
+         /* We don't know the length of the CU, because the CU list in a
+            .debug_names index can be incomplete, so we can't use the start
+            of the next CU as end of this CU.  We create the CUs here with
+            length 0, and in cutu_reader::cutu_reader we'll fill in the
+            actual length.  */
+         dwarf2_per_cu_data *per_cu
+           = create_cu_from_index_list (per_bfd, &section, is_dwz,
+                                        sect_off, 0);
+         per_bfd->all_comp_units.push_back (per_cu);
+       }
     }
 
   sect_offset sect_off_prev;