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