diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-08-04 22:22:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-08-04 22:22:13 +0000 |
commit | de4c45bd54870058d0ee91a652df9f1652b12cdb (patch) | |
tree | 84e4795da42d1cc11212fdea401c73944d38bac3 /gold/testsuite/weak_plt_shared.cc | |
parent | e5e6a5ff6ea89e1f8627d16d492288e0b8e834b1 (diff) | |
download | fsf-binutils-gdb-de4c45bd54870058d0ee91a652df9f1652b12cdb.zip fsf-binutils-gdb-de4c45bd54870058d0ee91a652df9f1652b12cdb.tar.gz fsf-binutils-gdb-de4c45bd54870058d0ee91a652df9f1652b12cdb.tar.bz2 |
* symtab.h (Symbol::use_plt_offset): New function.
* i386.cc (Relocate::relocate): Call Symbol::use_plt_offset.
* powerpc.cc (Relocate::relocate): Likewise.
* sparc.cc (Relocate::relocate): Likewise.
* x86_64.cc (Relocate::relocate): Likewise.
* testsuite/weak_plt.sh: New test.
* testsuite/weak_plt_main.cc: New test.
* testsuite/weak_plt_shared.cc: New test.
* testsuite/Makefile.am (check_SCRIPTS): Add weak_plt.sh.
(check_PROGRAMS): Add weak_plt.
(check_DATA): Add weak_plt_shared.so.
(weak_plt_main_pic.o, weak_plt): New targets.
(weak_plt_shared_pic.o, weak_plt_shared.so): New targets.
* testsuite/Makefile.in: Rebuild.
* testsuite/Makefile.am (weak_alias_test_1.so): Depend upon
gcctestdir/ld.
(weak_alias_test_2.so, weak_alias_test_4.so): Likewise.
* testsuite/Makefile.in: Rebuild.
Diffstat (limited to 'gold/testsuite/weak_plt_shared.cc')
-rw-r--r-- | gold/testsuite/weak_plt_shared.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gold/testsuite/weak_plt_shared.cc b/gold/testsuite/weak_plt_shared.cc new file mode 100644 index 0000000..8d82005 --- /dev/null +++ b/gold/testsuite/weak_plt_shared.cc @@ -0,0 +1,29 @@ +// weak_plt_shared.cc -- test call to weak undefined function for gold + +// Copyright 2008 Free Software Foundation, Inc. +// Written by Ian Lance Taylor <iant@google.com>. + +// This file is part of gold. + +// 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, write to the Free Software +// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, +// MA 02110-1301, USA. + +#include <cstdio> + +int +weak_function() +{ + return 0; +} |