4 /* Test various kinds of stepping.
12 /* A structure which, we hope, will need to be passed using memcpy. */
14 int rather_large
[100];
18 large_struct_by_value (struct rhomboidal r
)
20 myglob
+= r
.rather_large
[42]; /* step-test.exp: arrive here 1 */
27 /* Test "next" and "step" */
37 /* Test that "next" goes over a call */
40 /* Test that "step" doesn't */
54 memset (r
.rather_large
, 0, sizeof (r
.rather_large
));
55 r
.rather_large
[42] = 10;
56 large_struct_by_value (r
); /* step-test.exp: large struct by value */