From 8d60c4a2a1318c476f605953bb431cd8ca74e40e Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Fri, 22 Mar 2019 14:43:15 +0100 Subject: [PATCH] Misc cleanups * src/abg-dwarf-reader.cc (build_function_type): Cleanup indentation and comments. Signed-off-by: Dodji Seketeli --- src/abg-dwarf-reader.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/abg-dwarf-reader.cc b/src/abg-dwarf-reader.cc index 4a8efb72..a4a2e30e 100644 --- a/src/abg-dwarf-reader.cc +++ b/src/abg-dwarf-reader.cc @@ -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); -- 2.43.5