dwarf-reader: re-indent a block of code

While looking at something else, I noticed that a block of code in
compare_dies wasn't properly indented.  Fixed thus.

	* src/abg-dwarf-reader.cc (compare_dies): Properly indent a
	sub-block of the big switch case statement in there.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2020-07-29 10:27:37 +02:00
parent fd8640dc09
commit 63cfd6142c

View File

@ -11877,8 +11877,8 @@ compare_dies(const read_context& ctxt,
result = true;
else if (l_tag == DW_TAG_subroutine_type)
{
// The string reprs of l and r are already equal. Now let's
// just check if they both come from the same TU.
// The string reprs of l and r are already equal. Now
// let's just check if they both come from the same TU.
bool from_the_same_tu = false;
if (compare_dies_cu_decl_file(l, r, from_the_same_tu)
&& from_the_same_tu)