]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: fix typo in complaint in dwarf2/macro.c
authorSimon Marchi <simon.marchi@polymtl.ca>
Tue, 3 Aug 2021 15:31:12 +0000 (11:31 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Wed, 4 Aug 2021 19:26:11 +0000 (15:26 -0400)
I saw this complaint when my code had some bug, and spotted the typo.
Fix it, and while at it mention DW_MACRO as well (it would be confusing
to only see DW_MACINFO with a file that uses a DWARF 5 .debug_macro
section).  I contemplated the idea of passing the knowledge of whether
we are dealing with a .debug_macro section or .debug_macinfo section, to
print only the right one.  But in the end, I don't think that trouble is
necessary for a complaint nobody is going to see.

Change-Id: I276ce8da65c3eac5304f64a1e246358ed29cdbbc

gdb/dwarf2/macro.c

index 2ecebe6173c0ddc2ff00c7d65bb428667b68e342..bf687daedd71406cedcdbc25686ca79ab990165b 100644 (file)
@@ -330,7 +330,7 @@ skip_unknown_opcode (unsigned int opcode,
 
   if (opcode_definitions[opcode] == NULL)
     {
-      complaint (_("unrecognized DW_MACFINO opcode 0x%x"),
+      complaint (_("unrecognized DW_MACINFO or DW_MACRO opcode 0x%x"),
                 opcode);
       return NULL;
     }