OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.3/] [gdb/] [testsuite/] [gdb.base/] [dump.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1181 sfurman
#define ARRSIZE 32
2
int intarray[ARRSIZE], intarray2[ARRSIZE];
3
 
4
struct teststruct {
5
  int a;
6
  int b;
7
  int c;
8
  int d;
9
  int e;
10
  int f;
11
  int g;
12
} intstruct, intstruct2;
13
 
14
void checkpoint1 ()
15
{
16
  /* intarray and teststruct have been initialized. */
17
}
18
 
19
void
20
zero_all ()
21
{
22
  memset ((char *) &intarray,   0, sizeof (intarray));
23
  memset ((char *) &intarray2,  0, sizeof (intarray2));
24
  memset ((char *) &intstruct,  0, sizeof (intstruct));
25
  memset ((char *) &intstruct2, 0, sizeof (intstruct2));
26
}
27
 
28
main()
29
{
30
  int i;
31
 
32
  for (i = 0; i < ARRSIZE; i++)
33
    intarray[i] = i+1;
34
 
35
  intstruct.a = 12 * 1;
36
  intstruct.b = 12 * 2;
37
  intstruct.c = 12 * 3;
38
  intstruct.d = 12 * 4;
39
  intstruct.e = 12 * 5;
40
  intstruct.f = 12 * 6;
41
  intstruct.g = 12 * 7;
42
 
43
  checkpoint1 ();
44
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.