Browse Source

* add df_dwarf_dbg_info

git-svn-id: trunk@5048 -
peter 19 years ago
parent
commit
6ff28f639d
1 changed files with 4 additions and 1 deletions
  1. 4 1
      compiler/utils/ppudump.pp

+ 4 - 1
compiler/utils/ppudump.pp

@@ -777,6 +777,8 @@ type
     df_has_inittable,
     { rtti data has been generated }
     df_has_rttitable,
+    { dwarf debug info has been generated }
+    df_has_dwarf_dbg_info,
     { type is unique, i.e. declared with type = type <tdef>; }
     df_unique,
     { type is a generic }
@@ -790,10 +792,11 @@ type
     str  : string[30];
   end;
 const
-  defopts=5;
+  defopts=6;
   defopt : array[1..defopts] of tdefopt=(
      (mask:df_has_inittable;  str:'InitTable'),
      (mask:df_has_rttitable;  str:'RTTITable'),
+     (mask:df_has_dwarf_dbg_info;  str:'Dwarf DbgInfo'),
      (mask:df_unique;         str:'Unique Type'),
      (mask:df_generic;        str:'Generic'),
      (mask:df_specialization; str:'Specialization')