From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10557 invoked by alias); 30 Oct 2013 17:32:35 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org Received: (qmail 10517 invoked by uid 48); 30 Oct 2013 17:32:34 -0000 From: "will.newton at gmail dot com" To: gdb-prs@sourceware.org Subject: [Bug gdb/9310] nexti command does not work when debugging ARM assembly language Date: Wed, 30 Oct 2013 17:32:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: gdb X-Bugzilla-Version: 7.5 X-Bugzilla-Keywords: X-Bugzilla-Severity: critical X-Bugzilla-Who: will.newton at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: 7.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-q4/txt/msg00140.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=9310 Will Newton changed: What |Removed |Added ---------------------------------------------------------------------------- Status|WAITING |RESOLVED CC| |will.newton at gmail dot com Resolution|--- |FIXED --- Comment #5 from Will Newton --- The original issue in this bug report appears to be fixed: GNU gdb (GDB) 7.6.50.20131021-cvs Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "--host=x86_64-unknown-linux-gnu --target=arm-none-elf". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from appli.elf...done. (gdb) target sim Connected to the simulator. (gdb) load Loading section .text, size 0xac vma 0x20 Loading section .data, size 0x128 vma 0x4020 Start address 0x70 Transfer rate: 3744 bits in <1 sec. (gdb) break start Breakpoint 1 at 0x74: file main.s, line 33. (gdb) run Starting program: /home/will/linaro/binutils-gdb/arm-elf-gdb-bug-nexti/appli.elf Breakpoint 1, start () at main.s:33 warning: Source file is more recent than executable. 33 ldr r0, =tab3 (gdb) nexti 34 ldr r1, =tab1 (gdb) 35 ldr r2, =tab2 (gdb) 36 mov r3, #TAILLE (gdb) 37 bl sum (gdb) 39 nop (gdb) run The program being debugged has been started already. Start it from the beginning? (y or n) y Starting program: /home/will/linaro/binutils-gdb/arm-elf-gdb-bug-nexti/appli.elf Breakpoint 1, start () at main.s:33 33 ldr r0, =tab3 (gdb) nexti 34 ldr r1, =tab1 (gdb) 35 ldr r2, =tab2 (gdb) 36 mov r3, #TAILLE (gdb) 37 bl sum (gdb) stepi sum () at sum.s:19 warning: Source file is more recent than executable. 19 stmfd sp!, {r4, r5, lr} (gdb) up #1 0x00000088 in start () at main.s:37 37 bl sum If there are further issues, e.g. on i386 then they should really be part of a new bug report with it's own testcase. -- You are receiving this mail because: You are on the CC list for the bug.