| OLD | NEW |
| 1 /* Copyright 2011-2012, 2011 Free Software Foundation, Inc. | 1 /* Copyright 2011-2012, 2011 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 This program is free software; you can redistribute it and/or modify | 3 This program is free software; you can redistribute it and/or modify |
| 4 it under the terms of the GNU General Public License as published by | 4 it under the terms of the GNU General Public License as published by |
| 5 the Free Software Foundation; either version 3 of the License, or | 5 the Free Software Foundation; either version 3 of the License, or |
| 6 (at your option) any later version. | 6 (at your option) any later version. |
| 7 | 7 |
| 8 This program is distributed in the hope that it will be useful, | 8 This program is distributed in the hope that it will be useful, |
| 9 but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 GNU General Public License for more details. | 11 GNU General Public License for more details. |
| 12 | 12 |
| 13 You should have received a copy of the GNU General Public License | 13 You should have received a copy of the GNU General Public License |
| 14 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 14 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
| 15 | 15 |
| 16 .text | 16 .text |
| 17 pc_start: | 17 pc_start: |
| 18 .byte 0 | 18 .byte 0 |
| 19 pc_end: | 19 pc_end: |
| 20 | 20 |
| 21 .section .debug_info | 21 .section .debug_info |
| 22 d: | 22 d: |
| 23 » .long» .Ldebug_info_end - 1f» /* Length of Compilation Unit Info */ | 23 » .4byte» .Ldebug_info_end - 1f» /* Length of Compilation Unit Info */ |
| 24 1: | 24 1: |
| 25 .2byte 0x3 /* DWARF version number */ | 25 .2byte 0x3 /* DWARF version number */ |
| 26 » .long» .Ldebug_abbrev0»/* Offset Into Abbrev. Section */ | 26 » .4byte» .Ldebug_abbrev0»/* Offset Into Abbrev. Section */ |
| 27 .byte 0x4 /* Pointer Size (in bytes) */ | 27 .byte 0x4 /* Pointer Size (in bytes) */ |
| 28 dieb: | 28 dieb: |
| 29 .uleb128 0x1 /* (DIE (0xb) DW_TAG_compile_unit) */ | 29 .uleb128 0x1 /* (DIE (0xb) DW_TAG_compile_unit) */ |
| 30 .ascii "GCC\0" /* DW_AT_producer */ | 30 .ascii "GCC\0" /* DW_AT_producer */ |
| 31 .byte 0x2 /* DW_AT_language = DW_LANG_C */ | 31 .byte 0x2 /* DW_AT_language = DW_LANG_C */ |
| 32 .ascii "1.c\0" /* DW_AT_name */ | 32 .ascii "1.c\0" /* DW_AT_name */ |
| 33 | 33 |
| 34 .uleb128 0x2 /* (DIE (0xd3) DW_TAG_subprogram) */ | 34 .uleb128 0x2 /* (DIE (0xd3) DW_TAG_subprogram) */ |
| 35 .byte 0x1 /* DW_AT_external */ | 35 .byte 0x1 /* DW_AT_external */ |
| 36 .ascii "realrange\0" /* DW_AT_name */ | 36 .ascii "realrange\0" /* DW_AT_name */ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 .uleb128 0x11 /* (DW_AT_low_pc) */ | 73 .uleb128 0x11 /* (DW_AT_low_pc) */ |
| 74 .uleb128 0x1 /* (DW_FORM_addr) */ | 74 .uleb128 0x1 /* (DW_FORM_addr) */ |
| 75 .uleb128 0x12 /* (DW_AT_high_pc) */ | 75 .uleb128 0x12 /* (DW_AT_high_pc) */ |
| 76 .uleb128 0x1 /* (DW_FORM_addr) */ | 76 .uleb128 0x1 /* (DW_FORM_addr) */ |
| 77 .uleb128 0x27 /* (DW_AT_prototyped) */ | 77 .uleb128 0x27 /* (DW_AT_prototyped) */ |
| 78 .uleb128 0xc /* (DW_FORM_flag) */ | 78 .uleb128 0xc /* (DW_FORM_flag) */ |
| 79 .byte 0x0 | 79 .byte 0x0 |
| 80 .byte 0x0 | 80 .byte 0x0 |
| 81 | 81 |
| 82 .byte 0x0 | 82 .byte 0x0 |
| OLD | NEW |