diff options
Diffstat (limited to 'gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp')
-rw-r--r-- | gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp b/gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp index e46cbe5..11c6329 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp +++ b/gdb/testsuite/gdb.dwarf2/dw2-using-debug-str.exp @@ -34,51 +34,51 @@ Dwarf::assemble $asm_file { cu {} { compile_unit { - {language @DW_LANG_C} - {name ${srcfile}} - } { + DW_AT_language @DW_LANG_C + DW_AT_name ${srcfile} + } { declare_labels int4_type struct_type int4_type: DW_TAG_base_type { - {DW_AT_byte_size 4 DW_FORM_sdata} - {DW_AT_encoding @DW_ATE_signed} - {DW_AT_name integer} + DW_AT_byte_size 4 DW_FORM_sdata + DW_AT_encoding @DW_ATE_signed + DW_AT_name integer } struct_type: DW_TAG_structure_type { - {DW_AT_name "foo_t" DW_FORM_strp} - {DW_AT_byte_size 12 DW_FORM_sdata} + DW_AT_name "foo_t" DW_FORM_strp + DW_AT_byte_size 12 DW_FORM_sdata } { member { - {name "aa" DW_FORM_strp} - {type :$int4_type} - {data_member_location 0 data1} + DW_AT_name "aa" DW_FORM_strp + DW_AT_type :$int4_type + DW_AT_data_member_location 0 data1 } member { - {name "bb" DW_FORM_strp} - {type :$int4_type} - {data_member_location 4 data1} + DW_AT_name "bb" DW_FORM_strp + DW_AT_type :$int4_type + DW_AT_data_member_location 4 data1 } member { - {name "cc" DW_FORM_strp} - {type :$int4_type} - {data_member_location 8 data1} + DW_AT_name "cc" DW_FORM_strp + DW_AT_type :$int4_type + DW_AT_data_member_location 8 data1 } } DW_TAG_variable { - {DW_AT_name global_var DW_FORM_strp} - {DW_AT_type :$struct_type} - {DW_AT_location { + DW_AT_name global_var DW_FORM_strp + DW_AT_type :$struct_type + DW_AT_location { DW_OP_addr [gdb_target_symbol global_var] - } SPECIAL_expr} - {external 1 flag} + } SPECIAL_expr + DW_AT_external 1 flag } subprogram { - {external 1 flag} - {name main DW_FORM_strp} - {MACRO_AT_range {main}} + DW_AT_external 1 flag + DW_AT_name main DW_FORM_strp + MACRO_AT_range {main} } } } @@ -89,7 +89,7 @@ if { [prepare_for_testing "failed to prepare" ${testfile} \ return -1 } -if ![runto_main] { +if {![runto_main]} { return -1 } |