diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-12-01 18:14:30 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-12-01 18:14:30 +0000 |
commit | 08232497166ecbf332f0144a8352dd41d033bbec (patch) | |
tree | 8417b3940c577d4dc6ca390d7cc259c1c5c6436a /gdb/testsuite/gdb.base/weaklib1.c | |
parent | 6a4699867a44b59f726f108b489d4462d5ce9fa3 (diff) | |
download | gdb-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/weaklib1.c')
-rw-r--r-- | gdb/testsuite/gdb.base/weaklib1.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/weaklib1.c b/gdb/testsuite/gdb.base/weaklib1.c new file mode 100644 index 0000000..c9592e9 --- /dev/null +++ b/gdb/testsuite/gdb.base/weaklib1.c @@ -0,0 +1,24 @@ +/* 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. */ + +void __attribute__((weak)) +bar (void) +{ + puts ("bar in u1"); +} |