diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-17 18:38:46 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-17 18:38:46 +0000 |
commit | 63524580f8372e38a6a62fd875a4252068c31150 (patch) | |
tree | 56284f865a15b9e590b606102dc1a086ba876571 /gdb/testsuite | |
parent | 90359a167375927982fc3f675718044a491da759 (diff) | |
download | gdb-63524580f8372e38a6a62fd875a4252068c31150.zip gdb-63524580f8372e38a6a62fd875a4252068c31150.tar.gz gdb-63524580f8372e38a6a62fd875a4252068c31150.tar.bz2 |
bfd/
* elf64-ppc.c (ppc64_elf_get_synthetic_symtab): Do not check for
SEC_LOAD.
gdb/
Fix convert_code_addr_to_desc_addr for ppc64 files after eu-strip.
* elfread.c (elf_symfile_read): New variable synth_abfd, pass it to
bfd_get_synthetic_symtab.
* jit.c (jit_register_code): Pass NULL to the new parameter parent.
* machoread.c (macho_add_oso_symfile): Pass main_objfile to the new
parameter parent, remove the call to add_separate_debug_objfile.
* solib.c (solib_read_symbols): Pass NULL to the new parameter parent.
* symfile-mem.c (symbol_file_add_from_memory): Likewise.
* symfile.c (symbol_file_add_with_addrs_or_offsets): New parameter
parent, new comment for it, call add_separate_debug_objfile for it.
(symbol_file_add_separate): Pass objfile as the parameter parent,
remove the call to add_separate_debug_objfile.
(symbol_file_add_from_bfd): New parameter parent, pass it.
(symbol_file_add): Pass NULL to the new parameter parent.
* symfile.h (symbol_file_add_from_bfd): New parameter parent.
gdb/testsuite/
* gdb.base/eu-strip-infcall.c: New file.
* gdb.base/eu-strip-infcall.exp: New file.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/eu-strip-infcall.c | 34 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/eu-strip-infcall.exp | 36 |
3 files changed, 75 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index f1f8d3c..15e8b6c 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com> + * gdb.base/eu-strip-infcall.c: New file. + * gdb.base/eu-strip-infcall.exp: New file. + +2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com> + * gdb.base/callfuncs.c (Lcallfunc, callfunc): New functions. * gdb.base/callfuncs.exp (print callfunc (Lcallfunc, 5)): New test. diff --git a/gdb/testsuite/gdb.base/eu-strip-infcall.c b/gdb/testsuite/gdb.base/eu-strip-infcall.c new file mode 100644 index 0000000..59a5511 --- /dev/null +++ b/gdb/testsuite/gdb.base/eu-strip-infcall.c @@ -0,0 +1,34 @@ +/* Copyright 2011 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +int +func (void) +{ + return 1; +} + +int +callfunc (int (*funcp) (void)) +{ + return funcp () * 2; +} + +int +main (void) +{ + return callfunc (func); +} diff --git a/gdb/testsuite/gdb.base/eu-strip-infcall.exp b/gdb/testsuite/gdb.base/eu-strip-infcall.exp new file mode 100644 index 0000000..61c05cb --- /dev/null +++ b/gdb/testsuite/gdb.base/eu-strip-infcall.exp @@ -0,0 +1,36 @@ +# Copyright (C) 2011 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +set testfile eu-strip-infcall +set binfile ${objdir}/${subdir}/${testfile} + +if {[build_executable ${testfile}.exp $testfile] == -1} { + return -1 +} + +set test "eu-strip" +set status [remote_exec build "eu-strip -f ${binfile}.debug $binfile"] +if {[lindex $status 0] != 0} { + untested ${testfile}.exp + return 0 +} + +clean_restart $testfile + +if ![runto_main] { + return -1 +} + +gdb_test "p callfunc (func)" " = 2" "infcall" |