mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Initial creation of sourceware repository
This commit is contained in:
52
gdb/testsuite/gdb.base/display.c
Normal file
52
gdb/testsuite/gdb.base/display.c
Normal file
@ -0,0 +1,52 @@
|
||||
/* Loop and vars for tests of display commands
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#define LOOP 10
|
||||
|
||||
int sum = 0;
|
||||
|
||||
int do_loops()
|
||||
{
|
||||
int i=0;
|
||||
int k=0;
|
||||
int j=0;
|
||||
|
||||
for( i = 0; i < LOOP; i++ ) {
|
||||
for( j = 0; j < LOOP; j++ ) {
|
||||
for( k = 0; k < LOOP; k++ ) {
|
||||
sum++;
|
||||
}
|
||||
}
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
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 ) {
|
||||
j++;
|
||||
}
|
||||
else {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
return *p_i;
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
do_loops();
|
||||
do_vars();
|
||||
}
|
Reference in New Issue
Block a user