24ba476b64
These references to ChangeLog-mi are stale. testsuite/gdb.mi/ChangeLog-mi doesn't exist anymore, since: ... commit2dd627049d
Author: Andrew Cagney <cagney@redhat.com> Date: Sat Jun 23 21:47:09 2001 +0000 Rename gdb.mi/ChangeLog-mi to gdb.mi/ChangeLog. Update everything. ... commit48efe7049b
Author: Andrew Cagney <cagney@redhat.com> Date: Mon Jan 12 15:16:44 2004 +0000 Eliminate the old mi/tui specific ChangeLog files as in ... Added Files: mi/ChangeLog-1999-2003 testsuite/gdb.mi/ChangeLog-1999-2003 tui/ChangeLog-1998-2003 Removed Files: mi/ChangeLog testsuite/gdb.mi/ChangeLog tui/ChangeLog Tested with 'make check RUNTESTFLAGS="--directory=gdb.mi"' on x86_64 Fedora 17. gdb/testsuite/ 2013-10-29 Pedro Alves <palves@redhat.com> * gdb.mi/mi-console.c, gdb.mi/mi-stack.c: Remove local emacs variable setting change-log-default-name to ChangeLog-mi.
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
/* Copyright 1999-2013 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 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/>. */
|
|
|
|
/*
|
|
* This simple program that passes different types of arguments
|
|
* on function calls. Useful to test printing frames, stepping, etc.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int callee4 (void)
|
|
{
|
|
int A=1;
|
|
int B=2;
|
|
int C;
|
|
int D[3] = {0, 1, 2};
|
|
|
|
C = A + B;
|
|
return 0;
|
|
}
|
|
callee3 (char *strarg)
|
|
{
|
|
callee4 ();
|
|
}
|
|
|
|
callee2 (int intarg, char *strarg)
|
|
{
|
|
callee3 (strarg);
|
|
}
|
|
|
|
callee1 (int intarg, char *strarg, double fltarg)
|
|
{
|
|
callee2 (intarg, strarg);
|
|
}
|
|
|
|
main ()
|
|
{
|
|
callee1 (2, "A string argument.", 3.5);
|
|
callee1 (2, "A string argument.", 3.5);
|
|
|
|
printf ("Hello, World!");
|
|
|
|
return 0;
|
|
}
|