Misc cleanups
authorDodji Seketeli <dodji@redhat.com>
Fri, 22 Mar 2019 13:43:15 +0000 (14:43 +0100)
committerDodji Seketeli <dodji@redhat.com>
Fri, 22 Mar 2019 13:43:15 +0000 (14:43 +0100)
* src/abg-dwarf-reader.cc (build_function_type): Cleanup
indentation and comments.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
src/abg-dwarf-reader.cc

index 4a8efb728ebffab3535f4110e88a41f38971a22b..a4a2e30e0d6988be4588630e19a3f7ef9fbd1f46 100644 (file)
@@ -14252,7 +14252,7 @@ build_function_type(read_context&       ctxt,
     return result;
 
   ABG_ASSERT(dwarf_tag(die) == DW_TAG_subroutine_type
-        || dwarf_tag(die) == DW_TAG_subprogram);
+            || dwarf_tag(die) == DW_TAG_subprogram);
 
   die_source source;
   ABG_ASSERT(ctxt.get_die_source(die, source));
@@ -14747,7 +14747,8 @@ build_typedef_type(read_context&        ctxt,
        return result;
 
       // The call to build_ir_node_from_die() could have triggered the
-      // creation of the type for this DIE.  In that case, just return it.
+      // creation of the type for this DIE.  In that case, just return
+      // it.
       if (type_base_sptr t = ctxt.lookup_type_from_die(die))
        {
          result = is_typedef(t);