summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/display.c
blob: cd833e20d9c725fc1f050bbc3567e62fae559b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Loop and vars for tests of display commands
*/
#include <stdio.h>
#define LOOP 10

int sum = 0;

/* Call to force a variable onto the stack so we can see its address.  */
void force_mem (int *arg) { }

int do_loops()
{
    int i=0;
    int k=0;
    int j=0;
    float f=3.1415;
    int *p_i = &i;

    for( i = 0; i < LOOP; i++ ) { /* set breakpoint 1 here */
        for( j = 0; j < LOOP; j++ ) {
            for( k = 0; k < LOOP; k++ ) {
                sum++; f++; force_mem (&k);
            }
        }
    } 
    return i; /* set breakpoint 2 here */
}

int do_vars()
{
    int       j;
    int       i = 9;
    float     f = 1.234;
    char      c = 'Q';
    int    *p_i = &i;
    float  *p_f = &f;
    char   *p_c = "rubarb and fries";

    /* Need some code here to set breaks on.
     */
    for( j = 0; j < LOOP; j++ ) {
        if( p_c[j] == c ) { /* set breakpoint 3 here */
            j++;
        } 
        else {
            i++;
        }
    }

    return *p_i;
}

main()
{
    do_loops();
    do_vars();    
}