9d8fa39233
gdb/ * printcmd.c (current_display_number): Update comment. (disable_current_display_cleanup): Delete. (do_one_display): Use make_cleanup_restore_integer. Gracefully catch errors thrown while evaluating and printing the display. gdb/testsuite/ * gdb.base/display.c (do_loops): New `p_i' local. * gdb.base/display.exp: Test displaying a variable that is temporarily at a bad address.
58 lines
1.0 KiB
C
58 lines
1.0 KiB
C
/* 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();
|
|
}
|