diff options
author | Adam Fedor <fedor@gnu.org> | 2004-02-18 03:35:08 +0000 |
---|---|---|
committer | Adam Fedor <fedor@gnu.org> | 2004-02-18 03:35:08 +0000 |
commit | f3205b34a11f36b6c6e8f9b81e08b7b4818478e8 (patch) | |
tree | 4bb28fc735c02b25ce73821e20f370580cfa50d5 /gdb/testsuite/gdb.base/gdb1555.c | |
parent | 4589a601d6c5e3b3e9b3575e73f95f2cfe410aeb (diff) | |
download | gdb-f3205b34a11f36b6c6e8f9b81e08b7b4818478e8.zip gdb-f3205b34a11f36b6c6e8f9b81e08b7b4818478e8.tar.gz gdb-f3205b34a11f36b6c6e8f9b81e08b7b4818478e8.tar.bz2 |
* gdb.base/gdb1555.exp: New file.
* gdb.base/gdb1555-main.c, gdb.base/gdb1555.c: New files.
Diffstat (limited to 'gdb/testsuite/gdb.base/gdb1555.c')
-rw-r--r-- | gdb/testsuite/gdb.base/gdb1555.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/gdb1555.c b/gdb/testsuite/gdb.base/gdb1555.c new file mode 100644 index 0000000..6208261 --- /dev/null +++ b/gdb/testsuite/gdb.base/gdb1555.c @@ -0,0 +1,28 @@ +/* Test step/next in a shared library + + Copyright 2004, 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 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 hithere2() +{ + int a; + a = 21; + return a; +} + |