From: Yao Qi Date: Thu, 26 Feb 2015 14:21:19 +0000 (+0000) Subject: Dwarf assembler: handle one instruction function X-Git-Tag: gdb-7.10-release~1491 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03eddd80d7c9b406109c43c07741c9991520954b;p=external%2Fbinutils.git Dwarf assembler: handle one instruction function On aarch64, we got the following fail: (gdb) disassemble func Dump of assembler code for function func: 0x0000000000400730 <+0>: ret End of assembler dump.^M (gdb) x/2i func+0^M 0x400730 : ret^M 0x400734
: stp x29, x30, [sp,#-16]!^M (gdb) FAIL: gdb.dwarf2/dw2-ifort-parameter.exp: x/2i func+0 the pattern in proc function_range expects to match , however, GDB doesn't display the offset when it is zero. This patch is to adjust the pattern when $func_length is zero. gdb/testsuite: 2015-02-26 Yao Qi * lib/dwarf.exp (function_range): Adjust pattern when $func_length is zero. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 504e2f0..d06b5e5 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-02-26 Yao Qi + + * lib/dwarf.exp (function_range): Adjust pattern when $func_length + is zero. + 2015-02-26 Jan Kratochvil * gdb.arch/cordic.ko.bz2: New file. diff --git a/gdb/testsuite/lib/dwarf.exp b/gdb/testsuite/lib/dwarf.exp index 8ea7a0f..19963c4 100644 --- a/gdb/testsuite/lib/dwarf.exp +++ b/gdb/testsuite/lib/dwarf.exp @@ -146,9 +146,14 @@ proc function_range { func src } { } # Compute the size of the last instruction. + if { $func_length == 0 } then { + set func_pattern "$func" + } else { + set func_pattern "$func\\+$func_length" + } set test "x/2i $func+$func_length" gdb_test_multiple $test $test { - -re ".*($hex) <$func\\+$func_length>:\[^\r\n\]+\r\n\[ \]+($hex).*\.\r\n$gdb_prompt $" { + -re ".*($hex) <$func_pattern>:\[^\r\n\]+\r\n\[ \]+($hex).*\.\r\n$gdb_prompt $" { set start $expect_out(1,string) set end $expect_out(2,string)