diff options
author | Daniel Jacobowitz <drow@false.org> | 2009-08-07 19:32:06 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2009-08-07 19:32:06 +0000 |
commit | cf2a6cfab69c160b11b0bc1a4b00e58ade531ee9 (patch) | |
tree | 3608fe39a039fea77be50b3e8ddd3329b5ca49dd | |
parent | 940b5ce0998a436a5e414250ab8fa9a25138c839 (diff) | |
download | gdb-cf2a6cfab69c160b11b0bc1a4b00e58ade531ee9.zip gdb-cf2a6cfab69c160b11b0bc1a4b00e58ade531ee9.tar.gz gdb-cf2a6cfab69c160b11b0bc1a4b00e58ade531ee9.tar.bz2 |
binutils/testsuite/
* binutils-all/testranges.s: Use %progbits. Use ";#" for comments.
-rw-r--r-- | binutils/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/testranges.s | 54 |
2 files changed, 31 insertions, 27 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 24f4585..4579172 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2009-08-07 Daniel Jacobowitz <dan@codesourcery.com> + + * binutils-all/testranges.s: Use %progbits. Use ";#" for comments. + 2009-08-06 H.J. Lu <hongjiu.lu@intel.com> PR binutils/10492 diff --git a/binutils/testsuite/binutils-all/testranges.s b/binutils/testsuite/binutils-all/testranges.s index 1d02846..b7fd7bb 100644 --- a/binutils/testsuite/binutils-all/testranges.s +++ b/binutils/testsuite/binutils-all/testranges.s @@ -8,50 +8,50 @@ sub: .byte 2 end: - .section .debug_ranges,"",@progbits + .section .debug_ranges,"",%progbits range: range_sub: .long sub, end - .long 0, 0 # range terminator + .long 0, 0 ;# range terminator range_cu: .long start, end - .long 0, 0 # range terminator + .long 0, 0 ;# range terminator - .section .debug_info,"",@progbits - .long debugE - debugS # Length of Compilation Unit Info + .section .debug_info,"",%progbits + .long debugE - debugS ;# Length of Compilation Unit Info debugS: - .short 0x2 # DWARF version number - .long abbrev0 # Offset Into Abbrev. Section - .byte 0x4 # Pointer Size (in bytes) + .short 0x2 ;# DWARF version number + .long abbrev0 ;# Offset Into Abbrev. Section + .byte 0x4 ;# Pointer Size (in bytes) - .uleb128 0x1 # (DIE (0xb) DW_TAG_compile_unit) - .long range_cu - range # DW_AT_ranges + .uleb128 0x1 ;# (DIE (0xb) DW_TAG_compile_unit) + .long range_cu - range ;# DW_AT_ranges - .uleb128 0x2 # (DIE (0x6d) DW_TAG_subprogram) - .ascii "A\0" # DW_AT_name - .long range_sub - range # DW_AT_ranges + .uleb128 0x2 ;# (DIE (0x6d) DW_TAG_subprogram) + .ascii "A\0" ;# DW_AT_name + .long range_sub - range ;# DW_AT_ranges debugE: - .section .debug_abbrev,"",@progbits + .section .debug_abbrev,"",%progbits abbrev0: - .uleb128 0x1 # (abbrev code) - .uleb128 0x11 # (TAG: DW_TAG_compile_unit) - .byte 0x0 # DW_children_no - .uleb128 0x55 # (DW_AT_ranges) - .uleb128 0x6 # (DW_FORM_data4) + .uleb128 0x1 ;# (abbrev code) + .uleb128 0x11 ;# (TAG: DW_TAG_compile_unit) + .byte 0x0 ;# DW_children_no + .uleb128 0x55 ;# (DW_AT_ranges) + .uleb128 0x6 ;# (DW_FORM_data4) .byte 0x0 .byte 0x0 - .uleb128 0x2 # (abbrev code) - .uleb128 0x2e # (TAG: DW_TAG_subprogram) - .byte 0x0 # DW_children_no - .uleb128 0x3 # (DW_AT_name) - .uleb128 0x8 # (DW_FORM_string) - .uleb128 0x55 # (DW_AT_ranges) - .uleb128 0x6 # (DW_FORM_data4) + .uleb128 0x2 ;# (abbrev code) + .uleb128 0x2e ;# (TAG: DW_TAG_subprogram) + .byte 0x0 ;# DW_children_no + .uleb128 0x3 ;# (DW_AT_name) + .uleb128 0x8 ;# (DW_FORM_string) + .uleb128 0x55 ;# (DW_AT_ranges) + .uleb128 0x6 ;# (DW_FORM_data4) .byte 0x0 .byte 0x0 - .byte 0x0 # abbrevs terminator + .byte 0x0 ;# abbrevs terminator |