diff options
author | Pedro Alves <palves@redhat.com> | 2013-11-22 19:18:28 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-11-22 19:19:13 +0000 |
commit | c0621699ffdbeea387ea37a90258939540b26424 (patch) | |
tree | 7c2af529c8f6fc01635fbb5c81dbcb44327c89c5 /gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c | |
parent | f57e61cdf634ed7ff8c18edee8154fd92f8b2583 (diff) | |
download | gdb-c0621699ffdbeea387ea37a90258939540b26424.zip gdb-c0621699ffdbeea387ea37a90258939540b26424.tar.gz gdb-c0621699ffdbeea387ea37a90258939540b26424.tar.bz2 |
Rename gdb.dwarf2/dw2-bad-cfi.* to gdb.dwarf2/dw2-unspecified-ret-addr.*.
gdb/testsuite/
2013-11-22 Pedro Alves <palves@redhat.com>
* gdb.dwarf2/dw2-bad-cfi.S: Rename to ...
* gdb.dwarf2/dw2-unspecified-ret-addr.S: ... this. Adjust.
* gdb.dwarf2/dw2-bad-cfi.c: Rename to ...
* gdb.dwarf2/dw2-unspecified-ret-addr.c: ... this.
* gdb.dwarf2/dw2-bad-cfi.exp: Rename to ...
* gdb.dwarf2/dw2-unspecified-ret-addr.exp: ... this.
Diffstat (limited to 'gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c')
-rw-r--r-- | gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c b/gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c new file mode 100644 index 0000000..f5b415b --- /dev/null +++ b/gdb/testsuite/gdb.dwarf2/dw2-unspecified-ret-addr.c @@ -0,0 +1,28 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2013 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/>. */ + +void +callee (void) +{ +} + +int +main(void) +{ + callee (); + return 0; +} |