aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/solib-weak.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-12-01 18:14:30 +0000
committerDaniel Jacobowitz <drow@false.org>2006-12-01 18:14:30 +0000
commit08232497166ecbf332f0144a8352dd41d033bbec (patch)
tree8417b3940c577d4dc6ca390d7cc259c1c5c6436a /gdb/testsuite/gdb.base/solib-weak.c
parent6a4699867a44b59f726f108b489d4462d5ce9fa3 (diff)
downloadgdb-08232497166ecbf332f0144a8352dd41d033bbec.zip
gdb-08232497166ecbf332f0144a8352dd41d033bbec.tar.gz
gdb-08232497166ecbf332f0144a8352dd41d033bbec.tar.bz2
gdb/
* elfread.c (elf_symtab_read): Treat weak functions as global. gdb/testsuite/ * gdb.base/solib-weak.c, gdb.base/solib-weak.exp, gdb.base/weaklib1.c, gdb.base/weaklib2.c: New files.
Diffstat (limited to 'gdb/testsuite/gdb.base/solib-weak.c')
-rw-r--r--gdb/testsuite/gdb.base/solib-weak.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/solib-weak.c b/gdb/testsuite/gdb.base/solib-weak.c
new file mode 100644
index 0000000..09a9cc1
--- /dev/null
+++ b/gdb/testsuite/gdb.base/solib-weak.c
@@ -0,0 +1,25 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2006 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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ USA. */
+
+int
+main()
+{
+ foo ();
+ return 0;
+}