From: Yao Qi Date: Fri, 14 Nov 2014 00:53:08 +0000 (+0800) Subject: New proc _handle_attribute X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=02ad9cf101803a29d15ea81bb1fdab8a2e82f34f;p=deliverable%2Fbinutils-gdb.git New proc _handle_attribute This patch is to move some code to a new procedure _handle_attribute, which will be used in my following patches. gdb/testsuite: 2014-11-14 Yao Qi * lib/dwarf.exp (_handle_DW_TAG): Move some code to ... (_handle_attribute): New procedure. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 405548e394..d46f3cc2c6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-11-14 Yao Qi + + * lib/dwarf.exp (_handle_DW_TAG): Move some code to ... + (_handle_attribute): New procedure. + 2014-11-13 Andreas Arnez * gdb.ada/cond_lang/foo.c (callme): Add return type. diff --git a/gdb/testsuite/lib/dwarf.exp b/gdb/testsuite/lib/dwarf.exp index 1483271949..4986f83858 100644 --- a/gdb/testsuite/lib/dwarf.exp +++ b/gdb/testsuite/lib/dwarf.exp @@ -461,6 +461,18 @@ namespace eval Dwarf { return $name } + proc _handle_attribute { attr_name attr_value attr_form } { + variable _abbrev_section + variable _constants + + _handle_DW_FORM $attr_form $attr_value + + _defer_output $_abbrev_section { + _op .uleb128 $_constants($attr_name) $attr_name + _op .uleb128 $_constants($attr_form) $attr_form + } + } + proc _handle_DW_TAG {tag_name {attrs {}} {children {}}} { variable _abbrev_section variable _abbrev_num @@ -489,12 +501,7 @@ namespace eval Dwarf { } set attr_form [_map_name $attr_form _FORM] - _handle_DW_FORM $attr_form $attr_value - - _defer_output $_abbrev_section { - _op .uleb128 $_constants($attr_name) $attr_name - _op .uleb128 $_constants($attr_form) $attr_form - } + _handle_attribute $attr_name $attr_value $attr_form } _defer_output $_abbrev_section {