diff options
Diffstat (limited to 'gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp')
-rw-r--r-- | gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp b/gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp index e5334f2..e4bc3dd 100644 --- a/gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp +++ b/gdb/testsuite/gdb.dwarf2/opt-out-not-implptr.exp @@ -30,57 +30,57 @@ Dwarf::assemble $asm_file { declare_labels i64_type i32_type i64_array i32_array i64_type: base_type { - {name "int64_t"} - {encoding @DW_ATE_signed} - {byte_size 8 DW_FORM_sdata} + DW_AT_name "int64_t" + DW_AT_encoding @DW_ATE_signed + DW_AT_byte_size 8 DW_FORM_sdata } i32_type: base_type { - {name "int32_t"} - {encoding @DW_ATE_signed} - {byte_size 4 DW_FORM_sdata} + DW_AT_name "int32_t" + DW_AT_encoding @DW_ATE_signed + DW_AT_byte_size 4 DW_FORM_sdata } i64_array: DW_TAG_array_type { - {DW_AT_name array_type} - {DW_AT_type :$i64_type} + DW_AT_name array_type + DW_AT_type :$i64_type } { DW_TAG_subrange_type { - {DW_AT_type :$i64_type} - {DW_AT_lower_bound 0 DW_FORM_data1} - {DW_AT_upper_bound 3 DW_FORM_data1} + DW_AT_type :$i64_type + DW_AT_lower_bound 0 DW_FORM_data1 + DW_AT_upper_bound 3 DW_FORM_data1 } } i32_array: DW_TAG_array_type { - {DW_AT_name array_type} - {DW_AT_type :$i32_type} + DW_AT_name array_type + DW_AT_type :$i32_type } { DW_TAG_subrange_type { - {DW_AT_type :$i32_type} - {DW_AT_lower_bound 0 DW_FORM_data1} - {DW_AT_upper_bound 3 DW_FORM_data1} + DW_AT_type :$i32_type + DW_AT_lower_bound 0 DW_FORM_data1 + DW_AT_upper_bound 3 DW_FORM_data1 } } DW_TAG_variable { - {name i64_noptr} - {type :$i64_array} - {location { + DW_AT_name i64_noptr + DW_AT_type :$i64_array + DW_AT_location { DW_OP_constu $::c64 DW_OP_stack_value DW_OP_piece 8 - } SPECIAL_expr} + } SPECIAL_expr } DW_TAG_variable { - {name i32_noptr} - {type :$i32_array} - {location { + DW_AT_name i32_noptr + DW_AT_type :$i32_array + DW_AT_location { DW_OP_constu $::c32 DW_OP_stack_value DW_OP_piece 4 - } SPECIAL_expr} + } SPECIAL_expr } } } |