From: nasm-bot f. C. G. <gor...@gm...> - 2017-03-25 22:12:29
|
Commit-ID: de03b2b8311297ba126dba47f593366e34c95e87 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=de03b2b8311297ba126dba47f593366e34c95e87 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 25 Mar 2017 13:51:28 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sat, 25 Mar 2017 22:15:04 +0300 dwarf: Update dwarf_calling_conversion Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/dwarf.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/output/dwarf.h b/output/dwarf.h index dc425a6..4d6ea1e 100644 --- a/output/dwarf.h +++ b/output/dwarf.h @@ -494,12 +494,17 @@ enum dwarf_identifier_case { }; enum dwarf_calling_conversion { - DW_CC_normal = 0x01, - DW_CC_program = 0x02, - DW_CC_nocall = 0x03, + DW_CC_normal = 0x01, + DW_CC_program = 0x02, + DW_CC_nocall = 0x03, + DW_CC_pass_by_reference = 0x4, + DW_CC_pass_by_value = 0x5, - DW_CC_lo_user = 0x40, - DW_CC_hi_user = 0xff + DW_CC_lo_user = 0x40, + DW_CC_hi_user = 0xff, + + DW_CC_GNU_renesas_sh = 0x40, + DW_CC_GNU_borland_fastcall_i386 = 0x41 }; enum dwarf_inline { |