Blame SOURCES/gdb-rhbz795424-bitpos-25of25-test.patch

7a6771
http://sourceware.org/ml/gdb-patches/2012-10/msg00231.html
7a6771
Subject: Re: [PATCH] Expand fortran array bounds sizes to LONGEST
7a6771
7a6771
On Mon, 15 Oct 2012 15:25:55 +0200, Jan Kratochvil wrote:
7a6771
> I have filed for it now:
7a6771
> 	Invalid debug/ array bounds w/-fno-range-check and 32-bit target
7a6771
> 	http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54934
7a6771
7a6771
Therefore it looks as a valid gfortran FSF GCC HEAD bug so provided
7a6771
a hand-patched .S file for i386; patched GDB PASSes with it.
7a6771
7a6771
7a6771
Thanks,
7a6771
Jan
7a6771
7a6771
7a6771
2012-10-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
7a6771
	    Jan Kratochvil  <jan.kratochvil@redhat.com>
7a6771
7a6771
	* gdb.fortran/array-bounds.exp: New test file.
7a6771
	* gdb.fortran/array-bounds.f: New test file.
7a6771
	* gdb.fortran/array-bounds.S: New test file.
7a6771
7a6771
--- /dev/null	2012-09-26 15:32:16.098506310 +0200
7a6771
+++ gdb-7.2/gdb/testsuite/gdb.fortran/array-bounds.exp	2012-10-15 20:53:26.427072583 +0200
7a6771
@@ -0,0 +1,43 @@
7a6771
+# Copyright 2012 Free Software Foundation, Inc.
7a6771
+
7a6771
+# This program is free software; you can redistribute it and/or modify
7a6771
+# it under the terms of the GNU General Public License as published by
7a6771
+# the Free Software Foundation; either version 3 of the License, or
7a6771
+# (at your option) any later version.
7a6771
+#
7a6771
+# This program is distributed in the hope that it will be useful,
7a6771
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+# GNU General Public License for more details.
7a6771
+#
7a6771
+# You should have received a copy of the GNU General Public License
7a6771
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+# This file is part of the gdb testsuite.  It contains test to ensure that
7a6771
+# array bounds accept LONGEST.
7a6771
+
7a6771
+if { [skip_fortran_tests] } { return -1 }
7a6771
+
7a6771
+set testfile "array-bounds"
7a6771
+
7a6771
+if { [is_ilp32_target] && ([istarget "i\[34567\]86-*-linux*"]
7a6771
+			   || [istarget "x86_64-*-linux*"]) } {
7a6771
+    set srcfile ${testfile}.S
7a6771
+    set opts {nodebug f90}
7a6771
+} else {
7a6771
+    set srcfile ${testfile}.f
7a6771
+    set opts {debug f90}
7a6771
+}
7a6771
+
7a6771
+if {[prepare_for_testing $testfile.exp $testfile $srcfile $opts]} {
7a6771
+    print "compile failed"
7a6771
+    return -1
7a6771
+}
7a6771
+
7a6771
+if { ![runto MAIN__] } {
7a6771
+    perror "Could not run to breakpoint `MAIN__'."
7a6771
+    continue
7a6771
+}
7a6771
+
7a6771
+gdb_test "print &foo" {.*\(4294967296:4294967297\).*}
7a6771
+gdb_test "print &bar" {.*\(-4294967297:-4294967296\).*}
7a6771
--- /dev/null	2012-09-26 15:32:16.098506310 +0200
7a6771
+++ gdb-7.2/gdb/testsuite/gdb.fortran/array-bounds.f	2012-10-15 19:35:12.500254261 +0200
7a6771
@@ -0,0 +1,22 @@
7a6771
+c Copyright 2012 Free Software Foundation, Inc.
7a6771
+
7a6771
+c This program is free software; you can redistribute it and/or modify
7a6771
+c it under the terms of the GNU General Public License as published by
7a6771
+c the Free Software Foundation; either version 3 of the License, or
7a6771
+c (at your option) any later version.
7a6771
+c
7a6771
+c This program is distributed in the hope that it will be useful,
7a6771
+c but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+c GNU General Public License for more details.
7a6771
+c
7a6771
+c You should have received a copy of the GNU General Public License
7a6771
+c along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+        dimension foo(4294967296_8:4294967297_8)
7a6771
+        dimension bar(-4294967297_8:-4294967296_8)
7a6771
+        bar = 42
7a6771
+        foo=bar
7a6771
+        stop
7a6771
+        end
7a6771
+
7a6771
--- /dev/null	2012-09-26 15:32:16.098506310 +0200
7a6771
+++ gdb-7.2/gdb/testsuite/gdb.fortran/array-bounds.S	2012-10-15 20:52:36.851118215 +0200
7a6771
@@ -0,0 +1,529 @@
7a6771
+/* Copyright 2012 Free Software Foundation, Inc.
7a6771
+
7a6771
+   This program is free software; you can redistribute it and/or modify
7a6771
+   it under the terms of the GNU General Public License as published by
7a6771
+   the Free Software Foundation; either version 3 of the License, or
7a6771
+   (at your option) any later version.
7a6771
+
7a6771
+   This program is distributed in the hope that it will be useful,
7a6771
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+   GNU General Public License for more details.
7a6771
+
7a6771
+   You should have received a copy of the GNU General Public License
7a6771
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+   This file is part of the gdb testsuite.  */
7a6771
+
7a6771
+	.file	"array-bounds.f"
7a6771
+	.text
7a6771
+.Ltext0:
7a6771
+	.type	MAIN__, @function
7a6771
+MAIN__:
7a6771
+.LFB0:
7a6771
+	.file 1 "gdb.fortran/array-bounds.f"
7a6771
+	# gdb.fortran/array-bounds.f:16
7a6771
+	.loc 1 16 0
7a6771
+	.cfi_startproc
7a6771
+# BLOCK 2 seq:0
7a6771
+# PRED: ENTRY (FALLTHRU)
7a6771
+	pushl	%ebp
7a6771
+.LCFI0:
7a6771
+	.cfi_def_cfa_offset 8
7a6771
+	.cfi_offset 5, -8
7a6771
+	movl	%esp, %ebp
7a6771
+.LCFI1:
7a6771
+	.cfi_def_cfa_register 5
7a6771
+	subl	$40, %esp
7a6771
+.LBB2:
7a6771
+# SUCC: 3 (FALLTHRU)
7a6771
+	# gdb.fortran/array-bounds.f:18
7a6771
+	.loc 1 18 0
7a6771
+	movl	$-1, %eax
7a6771
+# BLOCK 3 seq:1
7a6771
+# PRED: 2 (FALLTHRU) 4 [100.0%] 
7a6771
+.L3:
7a6771
+	# gdb.fortran/array-bounds.f:18
7a6771
+	.loc 1 18 0 is_stmt 0 discriminator 1
7a6771
+	testl	%eax, %eax
7a6771
+# SUCC: 5 4 (FALLTHRU)
7a6771
+	jg	.L2
7a6771
+# BLOCK 4 seq:2
7a6771
+# PRED: 3 (FALLTHRU)
7a6771
+	# gdb.fortran/array-bounds.f:18
7a6771
+	.loc 1 18 0 discriminator 2
7a6771
+	leal	1(%eax), %ecx
7a6771
+	movl	.LC0, %edx
7a6771
+	movl	%edx, -16(%ebp,%ecx,4)
7a6771
+	addl	$1, %eax
7a6771
+# SUCC: 3 [100.0%] 
7a6771
+	jmp	.L3
7a6771
+# BLOCK 5 seq:3
7a6771
+# PRED: 3
7a6771
+.L2:
7a6771
+.LBE2:
7a6771
+	# gdb.fortran/array-bounds.f:19
7a6771
+	.loc 1 19 0 is_stmt 1
7a6771
+	movl	-16(%ebp), %eax
7a6771
+	movl	-12(%ebp), %edx
7a6771
+	movl	%eax, -24(%ebp)
7a6771
+	movl	%edx, -20(%ebp)
7a6771
+	# gdb.fortran/array-bounds.f:20
7a6771
+	.loc 1 20 0
7a6771
+	movl	$0, 4(%esp)
7a6771
+	movl	$0, (%esp)
7a6771
+# SUCC:
7a6771
+	call	_gfortran_stop_string
7a6771
+	.cfi_endproc
7a6771
+.LFE0:
7a6771
+	.size	MAIN__, .-MAIN__
7a6771
+	.globl	main
7a6771
+	.type	main, @function
7a6771
+main:
7a6771
+.LFB1:
7a6771
+	# gdb.fortran/array-bounds.f:21
7a6771
+	.loc 1 21 0
7a6771
+	.cfi_startproc
7a6771
+# BLOCK 2 seq:0
7a6771
+# PRED: ENTRY (FALLTHRU)
7a6771
+	pushl	%ebp
7a6771
+.LCFI2:
7a6771
+	.cfi_def_cfa_offset 8
7a6771
+	.cfi_offset 5, -8
7a6771
+	movl	%esp, %ebp
7a6771
+.LCFI3:
7a6771
+	.cfi_def_cfa_register 5
7a6771
+	andl	$-16, %esp
7a6771
+	subl	$16, %esp
7a6771
+	# gdb.fortran/array-bounds.f:21
7a6771
+	.loc 1 21 0
7a6771
+	movl	12(%ebp), %eax
7a6771
+	movl	%eax, 4(%esp)
7a6771
+	movl	8(%ebp), %eax
7a6771
+	movl	%eax, (%esp)
7a6771
+	call	_gfortran_set_args
7a6771
+	movl	$options.1.1824, 4(%esp)
7a6771
+	movl	$7, (%esp)
7a6771
+	call	_gfortran_set_options
7a6771
+	call	MAIN__
7a6771
+	movl	$0, %eax
7a6771
+	leave
7a6771
+.LCFI4:
7a6771
+	.cfi_restore 5
7a6771
+	.cfi_def_cfa 4, 4
7a6771
+# SUCC: EXIT [100.0%] 
7a6771
+	ret
7a6771
+	.cfi_endproc
7a6771
+.LFE1:
7a6771
+	.size	main, .-main
7a6771
+	.section	.rodata
7a6771
+	.align 4
7a6771
+	.type	options.1.1824, @object
7a6771
+	.size	options.1.1824, 28
7a6771
+options.1.1824:
7a6771
+	.long	68
7a6771
+	.long	1023
7a6771
+	.long	0
7a6771
+	.long	0
7a6771
+	.long	1
7a6771
+	.long	1
7a6771
+	.long	0
7a6771
+	.align 4
7a6771
+.LC0:
7a6771
+	.long	1109917696
7a6771
+	.text
7a6771
+.Letext0:
7a6771
+	.section	.debug_info,"",@progbits
7a6771
+.Ldebug_info0:
7a6771
+	.long	2f - 1f	# Length of Compilation Unit Info
7a6771
+1:
7a6771
+	.value	0x2	# DWARF version number
7a6771
+	.long	.Ldebug_abbrev0	# Offset Into Abbrev. Section
7a6771
+	.byte	0x4	# Pointer Size (in bytes)
7a6771
+dieb:	.uleb128 0x1	# (DIE (0xb) DW_TAG_compile_unit)
7a6771
+	.long	.LASF5	# DW_AT_producer: "GNU Fortran 4.8.0 20121015 (experimental) -ffixed-form -m32 -mtune=generic -march=x86-64 -g -gdwarf-2 -fintrinsic-modules-path .../gcchead-root/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/finclude"
7a6771
+	.byte	0xe	# DW_AT_language
7a6771
+	.byte	0x2	# DW_AT_identifier_case
7a6771
+	.long	.LASF6	# DW_AT_name: "gdb.fortran/array-bounds.f"
7a6771
+	.long	.LASF7	# DW_AT_comp_dir: ""
7a6771
+	.long	.Ltext0	# DW_AT_low_pc
7a6771
+	.long	.Letext0	# DW_AT_high_pc
7a6771
+	.long	.Ldebug_line0	# DW_AT_stmt_list
7a6771
+die26:	.uleb128 0x2	# (DIE (0x26) DW_TAG_subprogram)
7a6771
+	.long	.LASF8	# DW_AT_name: "MAIN__"
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x10	# DW_AT_decl_line
7a6771
+	.long	.LFB0	# DW_AT_low_pc
7a6771
+	.long	.LFE0	# DW_AT_high_pc
7a6771
+	.long	.LLST0	# DW_AT_frame_base
7a6771
+	.byte	0x1	# DW_AT_GNU_all_tail_call_sites
7a6771
+	.byte	0x1	# DW_AT_main_subprogram
7a6771
+	.byte	0x2	# DW_AT_calling_convention
7a6771
+	.long	die66 - .Ldebug_info0	# DW_AT_sibling
7a6771
+die40:	.uleb128 0x3	# (DIE (0x40) DW_TAG_variable)
7a6771
+	.ascii "bar\0"	# DW_AT_name
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x11	# DW_AT_decl_line
7a6771
+	.long	die66 - .Ldebug_info0	# DW_AT_type
7a6771
+	.byte	0x2	# DW_AT_location
7a6771
+	.byte	0x91	# DW_OP_fbreg
7a6771
+	.sleb128 -24
7a6771
+die4e:	.uleb128 0x3	# (DIE (0x4e) DW_TAG_variable)
7a6771
+	.ascii "foo\0"	# DW_AT_name
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x10	# DW_AT_decl_line
7a6771
+	.long	die88 - .Ldebug_info0	# DW_AT_type
7a6771
+	.byte	0x2	# DW_AT_location
7a6771
+	.byte	0x91	# DW_OP_fbreg
7a6771
+	.sleb128 -32
7a6771
+die5c:	.uleb128 0x4	# (DIE (0x5c) DW_TAG_lexical_block)
7a6771
+	.long	.LBB2	# DW_AT_low_pc
7a6771
+	.long	.LBE2	# DW_AT_high_pc
7a6771
+	.byte	0	# end of children of DIE 0x26
7a6771
+die66:	.uleb128 0x5	# (DIE (0x66) DW_TAG_array_type)
7a6771
+	.long	die81 - .Ldebug_info0	# DW_AT_type
7a6771
+	.long	die7a - .Ldebug_info0	# DW_AT_sibling
7a6771
+die6f:	.uleb128 0x6	# (DIE (0x6f) DW_TAG_subrange_type)
7a6771
+	.long	die7a - .Ldebug_info0	# DW_AT_type
7a6771
+#if 0
7a6771
+	.long	0xffffffff	# DW_AT_lower_bound
7a6771
+	.byte	0	# DW_AT_upper_bound
7a6771
+#else
7a6771
+	.quad	0xfffffffeffffffff	# DW_AT_lower_bound
7a6771
+	.quad	0xffffffff00000000	# DW_AT_upper_bound
7a6771
+#endif
7a6771
+	.byte	0	# end of children of DIE 0x66
7a6771
+die7a:	.uleb128 0x7	# (DIE (0x7a) DW_TAG_base_type)
7a6771
+#if 0
7a6771
+	.byte	0x4	# DW_AT_byte_size
7a6771
+#else
7a6771
+	.byte	0x8	# DW_AT_byte_size
7a6771
+#endif
7a6771
+	.byte	0x5	# DW_AT_encoding
7a6771
+	.long	.LASF0	# DW_AT_name: "integer(kind=4)"
7a6771
+die81:	.uleb128 0x7	# (DIE (0x81) DW_TAG_base_type)
7a6771
+	.byte	0x4	# DW_AT_byte_size
7a6771
+	.byte	0x4	# DW_AT_encoding
7a6771
+	.long	.LASF1	# DW_AT_name: "real(kind=4)"
7a6771
+die88:	.uleb128 0x5	# (DIE (0x88) DW_TAG_array_type)
7a6771
+	.long	die81 - .Ldebug_info0	# DW_AT_type
7a6771
+	.long	die99 - .Ldebug_info0	# DW_AT_sibling
7a6771
+die91:	.uleb128 0x8	# (DIE (0x91) DW_TAG_subrange_type)
7a6771
+	.long	die7a - .Ldebug_info0	# DW_AT_type
7a6771
+#if 0
7a6771
+	.byte	0	# DW_AT_lower_bound
7a6771
+	.byte	0x1	# DW_AT_upper_bound
7a6771
+#else
7a6771
+	.quad	0x100000000	# DW_AT_lower_bound
7a6771
+	.quad	0x100000001	# DW_AT_upper_bound
7a6771
+#endif
7a6771
+	.byte	0	# end of children of DIE 0x88
7a6771
+die99:	.uleb128 0x9	# (DIE (0x99) DW_TAG_subprogram)
7a6771
+	.byte	0x1	# DW_AT_external
7a6771
+	.long	.LASF9	# DW_AT_name: "main"
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x15	# DW_AT_decl_line
7a6771
+	.long	die7a - .Ldebug_info0	# DW_AT_type
7a6771
+	.long	.LFB1	# DW_AT_low_pc
7a6771
+	.long	.LFE1	# DW_AT_high_pc
7a6771
+	.long	.LLST1	# DW_AT_frame_base
7a6771
+	.byte	0x1	# DW_AT_GNU_all_tail_call_sites
7a6771
+	.long	died4 - .Ldebug_info0	# DW_AT_sibling
7a6771
+dieb6:	.uleb128 0xa	# (DIE (0xb6) DW_TAG_formal_parameter)
7a6771
+	.long	.LASF2	# DW_AT_name: "argc"
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x15	# DW_AT_decl_line
7a6771
+	.long	died4 - .Ldebug_info0	# DW_AT_type
7a6771
+	.byte	0x2	# DW_AT_location
7a6771
+	.byte	0x91	# DW_OP_fbreg
7a6771
+	.sleb128 0
7a6771
+diec4:	.uleb128 0xa	# (DIE (0xc4) DW_TAG_formal_parameter)
7a6771
+	.long	.LASF3	# DW_AT_name: "argv"
7a6771
+	.byte	0x1	# DW_AT_decl_file (gdb.fortran/array-bounds.f)
7a6771
+	.byte	0x15	# DW_AT_decl_line
7a6771
+	.long	died9 - .Ldebug_info0	# DW_AT_type
7a6771
+	.byte	0x3	# DW_AT_location
7a6771
+	.byte	0x91	# DW_OP_fbreg
7a6771
+	.sleb128 4
7a6771
+	.byte	0x6	# DW_OP_deref
7a6771
+	.byte	0	# end of children of DIE 0x99
7a6771
+died4:	.uleb128 0xb	# (DIE (0xd4) DW_TAG_const_type)
7a6771
+	.long	die7a - .Ldebug_info0	# DW_AT_type
7a6771
+died9:	.uleb128 0xc	# (DIE (0xd9) DW_TAG_pointer_type)
7a6771
+	.byte	0x4	# DW_AT_byte_size
7a6771
+	.long	diedf - .Ldebug_info0	# DW_AT_type
7a6771
+diedf:	.uleb128 0x7	# (DIE (0xdf) DW_TAG_base_type)
7a6771
+	.byte	0x1	# DW_AT_byte_size
7a6771
+	.byte	0x8	# DW_AT_encoding
7a6771
+	.long	.LASF4	# DW_AT_name: "character(kind=1)"
7a6771
+	.byte	0	# end of children of DIE 0xb
7a6771
+2:
7a6771
+	.section	.debug_abbrev,"",@progbits
7a6771
+.Ldebug_abbrev0:
7a6771
+	.uleb128 0x1	# (abbrev code)
7a6771
+	.uleb128 0x11	# (TAG: DW_TAG_compile_unit)
7a6771
+	.byte	0x1	# DW_children_yes
7a6771
+	.uleb128 0x25	# (DW_AT_producer)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x13	# (DW_AT_language)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x42	# (DW_AT_identifier_case)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x1b	# (DW_AT_comp_dir)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x11	# (DW_AT_low_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x12	# (DW_AT_high_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x10	# (DW_AT_stmt_list)
7a6771
+	.uleb128 0x6	# (DW_FORM_data4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x2	# (abbrev code)
7a6771
+	.uleb128 0x2e	# (TAG: DW_TAG_subprogram)
7a6771
+	.byte	0x1	# DW_children_yes
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x3a	# (DW_AT_decl_file)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3b	# (DW_AT_decl_line)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x11	# (DW_AT_low_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x12	# (DW_AT_high_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x40	# (DW_AT_frame_base)
7a6771
+	.uleb128 0x6	# (DW_FORM_data4)
7a6771
+	.uleb128 0x2116	# (DW_AT_GNU_all_tail_call_sites)
7a6771
+	.uleb128 0xc	# (DW_FORM_flag)
7a6771
+	.uleb128 0x6a	# (DW_AT_main_subprogram)
7a6771
+	.uleb128 0xc	# (DW_FORM_flag)
7a6771
+	.uleb128 0x36	# (DW_AT_calling_convention)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x1	# (DW_AT_sibling)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x3	# (abbrev code)
7a6771
+	.uleb128 0x34	# (TAG: DW_TAG_variable)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0x8	# (DW_FORM_string)
7a6771
+	.uleb128 0x3a	# (DW_AT_decl_file)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3b	# (DW_AT_decl_line)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.uleb128 0x2	# (DW_AT_location)
7a6771
+	.uleb128 0xa	# (DW_FORM_block1)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x4	# (abbrev code)
7a6771
+	.uleb128 0xb	# (TAG: DW_TAG_lexical_block)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x11	# (DW_AT_low_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x12	# (DW_AT_high_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x5	# (abbrev code)
7a6771
+	.uleb128 0x1	# (TAG: DW_TAG_array_type)
7a6771
+	.byte	0x1	# DW_children_yes
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.uleb128 0x1	# (DW_AT_sibling)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x6	# (abbrev code)
7a6771
+	.uleb128 0x21	# (TAG: DW_TAG_subrange_type)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+#if 0
7a6771
+	.uleb128 0x22	# (DW_AT_lower_bound)
7a6771
+	.uleb128 0x6	# (DW_FORM_data4)
7a6771
+	.uleb128 0x2f	# (DW_AT_upper_bound)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+#else
7a6771
+	.uleb128 0x22	# (DW_AT_lower_bound)
7a6771
+	.uleb128 0x7	# (DW_FORM_data8)
7a6771
+	.uleb128 0x2f	# (DW_AT_upper_bound)
7a6771
+	.uleb128 0x7	# (DW_FORM_data8)
7a6771
+#endif
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x7	# (abbrev code)
7a6771
+	.uleb128 0x24	# (TAG: DW_TAG_base_type)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0xb	# (DW_AT_byte_size)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3e	# (DW_AT_encoding)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x8	# (abbrev code)
7a6771
+	.uleb128 0x21	# (TAG: DW_TAG_subrange_type)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+#if 0
7a6771
+	.uleb128 0x22	# (DW_AT_lower_bound)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x2f	# (DW_AT_upper_bound)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+#else
7a6771
+	.uleb128 0x22	# (DW_AT_lower_bound)
7a6771
+	.uleb128 0x7	# (DW_FORM_data8)
7a6771
+	.uleb128 0x2f	# (DW_AT_upper_bound)
7a6771
+	.uleb128 0x7	# (DW_FORM_data8)
7a6771
+#endif
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0x9	# (abbrev code)
7a6771
+	.uleb128 0x2e	# (TAG: DW_TAG_subprogram)
7a6771
+	.byte	0x1	# DW_children_yes
7a6771
+	.uleb128 0x3f	# (DW_AT_external)
7a6771
+	.uleb128 0xc	# (DW_FORM_flag)
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x3a	# (DW_AT_decl_file)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3b	# (DW_AT_decl_line)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.uleb128 0x11	# (DW_AT_low_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x12	# (DW_AT_high_pc)
7a6771
+	.uleb128 0x1	# (DW_FORM_addr)
7a6771
+	.uleb128 0x40	# (DW_AT_frame_base)
7a6771
+	.uleb128 0x6	# (DW_FORM_data4)
7a6771
+	.uleb128 0x2116	# (DW_AT_GNU_all_tail_call_sites)
7a6771
+	.uleb128 0xc	# (DW_FORM_flag)
7a6771
+	.uleb128 0x1	# (DW_AT_sibling)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0xa	# (abbrev code)
7a6771
+	.uleb128 0x5	# (TAG: DW_TAG_formal_parameter)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x3	# (DW_AT_name)
7a6771
+	.uleb128 0xe	# (DW_FORM_strp)
7a6771
+	.uleb128 0x3a	# (DW_AT_decl_file)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x3b	# (DW_AT_decl_line)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.uleb128 0x2	# (DW_AT_location)
7a6771
+	.uleb128 0xa	# (DW_FORM_block1)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0xb	# (abbrev code)
7a6771
+	.uleb128 0x26	# (TAG: DW_TAG_const_type)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.uleb128 0xc	# (abbrev code)
7a6771
+	.uleb128 0xf	# (TAG: DW_TAG_pointer_type)
7a6771
+	.byte	0	# DW_children_no
7a6771
+	.uleb128 0xb	# (DW_AT_byte_size)
7a6771
+	.uleb128 0xb	# (DW_FORM_data1)
7a6771
+	.uleb128 0x49	# (DW_AT_type)
7a6771
+	.uleb128 0x13	# (DW_FORM_ref4)
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.byte	0
7a6771
+	.section	.debug_loc,"",@progbits
7a6771
+.Ldebug_loc0:
7a6771
+.LLST0:
7a6771
+	.long	.LFB0-.Ltext0	# Location list begin address (*.LLST0)
7a6771
+	.long	.LCFI0-.Ltext0	# Location list end address (*.LLST0)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x74	# DW_OP_breg4
7a6771
+	.sleb128 4
7a6771
+	.long	.LCFI0-.Ltext0	# Location list begin address (*.LLST0)
7a6771
+	.long	.LCFI1-.Ltext0	# Location list end address (*.LLST0)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x74	# DW_OP_breg4
7a6771
+	.sleb128 8
7a6771
+	.long	.LCFI1-.Ltext0	# Location list begin address (*.LLST0)
7a6771
+	.long	.LFE0-.Ltext0	# Location list end address (*.LLST0)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x75	# DW_OP_breg5
7a6771
+	.sleb128 8
7a6771
+	.long	0	# Location list terminator begin (*.LLST0)
7a6771
+	.long	0	# Location list terminator end (*.LLST0)
7a6771
+.LLST1:
7a6771
+	.long	.LFB1-.Ltext0	# Location list begin address (*.LLST1)
7a6771
+	.long	.LCFI2-.Ltext0	# Location list end address (*.LLST1)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x74	# DW_OP_breg4
7a6771
+	.sleb128 4
7a6771
+	.long	.LCFI2-.Ltext0	# Location list begin address (*.LLST1)
7a6771
+	.long	.LCFI3-.Ltext0	# Location list end address (*.LLST1)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x74	# DW_OP_breg4
7a6771
+	.sleb128 8
7a6771
+	.long	.LCFI3-.Ltext0	# Location list begin address (*.LLST1)
7a6771
+	.long	.LCFI4-.Ltext0	# Location list end address (*.LLST1)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x75	# DW_OP_breg5
7a6771
+	.sleb128 8
7a6771
+	.long	.LCFI4-.Ltext0	# Location list begin address (*.LLST1)
7a6771
+	.long	.LFE1-.Ltext0	# Location list end address (*.LLST1)
7a6771
+	.value	0x2	# Location expression size
7a6771
+	.byte	0x74	# DW_OP_breg4
7a6771
+	.sleb128 4
7a6771
+	.long	0	# Location list terminator begin (*.LLST1)
7a6771
+	.long	0	# Location list terminator end (*.LLST1)
7a6771
+	.section	.debug_aranges,"",@progbits
7a6771
+	.long	0x1c	# Length of Address Ranges Info
7a6771
+	.value	0x2	# DWARF Version
7a6771
+	.long	.Ldebug_info0	# Offset of Compilation Unit Info
7a6771
+	.byte	0x4	# Size of Address
7a6771
+	.byte	0	# Size of Segment Descriptor
7a6771
+	.value	0	# Pad to 8 byte boundary
7a6771
+	.value	0
7a6771
+	.long	.Ltext0	# Address
7a6771
+	.long	.Letext0-.Ltext0	# Length
7a6771
+	.long	0
7a6771
+	.long	0
7a6771
+	.section	.debug_line,"",@progbits
7a6771
+.Ldebug_line0:
7a6771
+	.section	.debug_str,"MS",@progbits,1
7a6771
+.LASF4:
7a6771
+	.string	"character(kind=1)"
7a6771
+.LASF5:
7a6771
+	.string	"GNU Fortran 4.8.0 20121015 (experimental) -ffixed-form -m32 -mtune=generic -march=x86-64 -g -gdwarf-2 -fintrinsic-modules-path .../gcchead-root/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/finclude"
7a6771
+.LASF7:
7a6771
+	.string	""
7a6771
+.LASF0:
7a6771
+#if 0
7a6771
+	.string	"integer(kind=4)"
7a6771
+#else
7a6771
+	.string	"integer(kind=8)"
7a6771
+#endif
7a6771
+.LASF9:
7a6771
+	.string	"main"
7a6771
+.LASF8:
7a6771
+	.string	"MAIN__"
7a6771
+.LASF6:
7a6771
+	.string	"gdb.fortran/array-bounds.f"
7a6771
+.LASF2:
7a6771
+	.string	"argc"
7a6771
+.LASF1:
7a6771
+	.string	"real(kind=4)"
7a6771
+.LASF3:
7a6771
+	.string	"argv"
7a6771
+	.ident	"GCC: (GNU) 4.8.0 20121015 (experimental)"
7a6771
+	.section	.note.GNU-stack,"",@progbits
7a6771