From 75834f33d6abcbfbd160af97cda5bc83c9ed8a5d Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 26 Jul 2017 18:15:20 +0200 Subject: libdw: DWARF5 Add DW_CC_pass_by_reference and DW_CC_pass_by_reference. Signed-off-by: Mark Wielaard --- libdw/dwarf.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'libdw/dwarf.h') diff --git a/libdw/dwarf.h b/libdw/dwarf.h index dd4384fb..de8f7e5a 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -688,12 +688,17 @@ enum }; -/* DWARF calling conventions encodings. */ +/* DWARF calling conventions encodings. + Used as values of DW_AT_calling_convention for subroutines + (normal, program or nocall) or structures, unions and class types + (normal, reference or value). */ enum { DW_CC_normal = 0x1, DW_CC_program = 0x2, DW_CC_nocall = 0x3, + DW_CC_pass_by_reference = 0x4, + DW_CC_pass_by_value = 0x5, DW_CC_lo_user = 0x40, DW_CC_hi_user = 0xff }; -- cgit v1.2.3