aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-09-17 07:15:48 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-09-17 07:15:48 +0000
commit1ab3b62c9dabd92c26377f25146f1d58e3c766a6 (patch)
tree1d45213a35cc797b007258d309be890307f39de3 /gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c
parentacf9414f48577b03f303c70f504383709db6a249 (diff)
downloadgdb-1ab3b62c9dabd92c26377f25146f1d58e3c766a6.zip
gdb-1ab3b62c9dabd92c26377f25146f1d58e3c766a6.tar.gz
gdb-1ab3b62c9dabd92c26377f25146f1d58e3c766a6.tar.bz2
gdb/
PR 14119 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames. (frame_pop): Drop also TAILCALL_FRAME frames. * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames. gdb/testsuite/ PR 14119 * gdb.arch/amd64-tailcall-ret.S: New file. * gdb.arch/amd64-tailcall-ret.c: New file. * gdb.arch/amd64-tailcall-ret.exp: New file. * gdb.reverse/amd64-tailcall-reverse.S: New file. * gdb.reverse/amd64-tailcall-reverse.c: New file. * gdb.reverse/amd64-tailcall-reverse.exp: New file.
Diffstat (limited to 'gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c')
-rw-r--r--gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c b/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c
new file mode 100644
index 0000000..d275727
--- /dev/null
+++ b/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.c
@@ -0,0 +1,39 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2012 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/>. */
+
+volatile int v;
+
+static __attribute__ ((noinline, noclone)) void
+g (void)
+{
+ v = 2;
+}
+
+static __attribute__ ((noinline, noclone)) void
+f (void)
+{
+ g ();
+}
+
+int
+main (void)
+{
+ v = 1;
+ f ();
+ v = 3;
+ return 0;
+}