浏览代码

+ added the non-standard Open Watcom DWARF extension DW_LNE_set_segment extended
opcode constant; not emitted yet; will be needed on i8086

git-svn-id: trunk@39048 -

nickysn 7 年之前
父节点
当前提交
b048da4284
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      compiler/dbgdwarf.pas

+ 3 - 0
compiler/dbgdwarf.pas

@@ -679,6 +679,9 @@ implementation
       DW_LNE_end_sequence = $01;
       DW_LNE_set_address  = $02;
       DW_LNE_define_file  = $03;
+      { DW_LNE_set_segment is a non-standard Open Watcom extension. It might
+        create conflicts with future versions of the DWARF standard. }
+      DW_LNE_set_segment  = $04;
       DW_LNE_lo_user      = $80;
       DW_LNE_hi_user      = $ff;