This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH to dwarf2read.c


Applied as obvious.

2002-02-28  Jason Merrill  <jason@redhat.com>

	* dwarf2read.c (dwarf_cfi_name): Add new codes.

*** dwarf2read.c.~1~	Thu Feb 28 10:44:49 2002
--- dwarf2read.c	Thu Feb 28 10:41:58 2002
*************** dwarf_cfi_name (register unsigned cfi_op
*** 5603,5611 ****
--- 5603,5633 ----
        return "DW_CFA_def_cfa_register";
      case DW_CFA_def_cfa_offset:
        return "DW_CFA_def_cfa_offset";
+ 
+     /* DWARF 3 */
+     case DW_CFA_def_cfa_expression:
+       return "DW_CFA_def_cfa_expression";
+     case DW_CFA_expression:
+       return "DW_CFA_expression";
+     case DW_CFA_offset_extended_sf:
+       return "DW_CFA_offset_extended_sf";
+     case DW_CFA_def_cfa_sf:
+       return "DW_CFA_def_cfa_sf";
+     case DW_CFA_def_cfa_offset_sf:
+       return "DW_CFA_def_cfa_offset_sf";
+ 
        /* SGI/MIPS specific */
      case DW_CFA_MIPS_advance_loc8:
        return "DW_CFA_MIPS_advance_loc8";
+ 
+     /* GNU extensions */
+     case DW_CFA_GNU_window_save:
+       return "DW_CFA_GNU_window_save";
+     case DW_CFA_GNU_args_size:
+       return "DW_CFA_GNU_args_size";
+     case DW_CFA_GNU_negative_offset_extended:
+       return "DW_CFA_GNU_negative_offset_extended";
+ 
      default:
        return "DW_CFA_<unknown>";
      }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]