Delete Tru64 support
[external/binutils.git] / gdb / testsuite / gdb.mi / mi-dprintf.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3    Copyright (C) 2013-2014 Free Software Foundation, Inc.
4    Contributed by Hui Zhu  <hui@codesourcery.com>
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21
22 static int g;
23
24 void
25 foo (int arg)
26 {
27   g += arg;
28   g *= 2; /* set dprintf 1 here */
29   g /= 2.5; /* set breakpoint 1 here */
30 }
31
32 int
33 main (int argc, char *argv[])
34 {
35   int loc = 1234;
36
37   /* Ensure these functions are available.  */
38   printf ("kickoff %d\n", loc);
39   fprintf (stderr, "also to stderr %d\n", loc);
40
41   foo (loc++);
42   foo (loc++);
43   foo (loc++);
44   return g;
45 }
46
47 /* Make sure function 'malloc' is linked into program.  On some bare-metal
48    port, if we don't use 'malloc', it will not be linked in program.  'malloc'
49    is needed, otherwise we'll see such error message
50    evaluation of this expression requires the program to have a function
51    "malloc".  */
52
53 void
54 bar (void)
55 {
56   void *p = malloc (16);
57
58   free (p);
59 }