Hi, gcc-6.2.1-2.fc24.x86_64 (gdb) backtrace 10^M #0 func () at .../gdb/testsuite/gdb.arch/i386-signal.c:26^M #1 ^M #2 0x0000000000400588 in main () at .../gdb/testsuite/gdb.arch/i386-signal.c:31^M (gdb) FAIL: gdb.arch/i386-signal.exp: backtrace 10 (gdb) disas/s Dump of assembler code for function main: .../gdb/testsuite/gdb.arch/i386-signal.c: 30 { 0x000000000040057f <+0>: push %rbp 0x0000000000400580 <+1>: mov %rsp,%rbp 31 setup (); 0x0000000000400583 <+4>: callq 0x400590 => 0x0000000000400588 <+9>: mov $0x0,%eax 32 } 0x000000000040058d <+14>: pop %rbp 0x000000000040058e <+15>: retq End of assembler dump. The two attached patch chunks each fixes the FAIL on its own. The .exp patch is an obvious typo fix I think. The regex was written to accept "ADDR in main" and I find it OK as checking .debug_line validity is not the purpose of this testfile. The .c patch will properly create a new corresponding source line .debug_line entry for the 'mov $0x0,%eax' instruction and I also do not think it is relevant to the purpose of this testfile. gcc-4.8.5-11.el7.x86_64 did not put the 'mov $0x0,%eax' instruction there at all so there was no problem with .debug_line. Tested on {x86_64,x86_64-m32}-fedora24-linux-gnu. OK to check it in? Thanks, Jan