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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.trace/] [circ.c] - Diff between revs 107 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 107 Rev 1765
/*
/*
 * Test program for tracing; circular buffer
 * Test program for tracing; circular buffer
 */
 */
 
 
int n = 6;
int n = 6;
 
 
int testload[13];
int testload[13];
 
 
static void func0(void)
static void func0(void)
{
{
}
}
 
 
static void func1(void)
static void func1(void)
{
{
}
}
 
 
static void func2(void)
static void func2(void)
{
{
}
}
 
 
static void func3(void)
static void func3(void)
{
{
}
}
 
 
static void func4(void)
static void func4(void)
{
{
}
}
 
 
static void func5(void)
static void func5(void)
{
{
}
}
 
 
static void func6(void)
static void func6(void)
{
{
}
}
 
 
static void func7(void)
static void func7(void)
{
{
}
}
 
 
static void func8(void)
static void func8(void)
{
{
}
}
 
 
static void func9(void)
static void func9(void)
{
{
}
}
 
 
static void begin ()    /* called before anything else */
static void begin ()    /* called before anything else */
{
{
}
}
 
 
static void end ()      /* called after everything else */
static void end ()      /* called after everything else */
{
{
}
}
 
 
int
int
main (argc, argv, envp)
main (argc, argv, envp)
     int argc;
     int argc;
     char *argv[], **envp;
     char *argv[], **envp;
{
{
  int i;
  int i;
 
 
#ifdef usestubs
#ifdef usestubs
  set_debug_traps ();
  set_debug_traps ();
  breakpoint ();
  breakpoint ();
#endif
#endif
 
 
  begin ();
  begin ();
  for (i = 0; i < sizeof(testload) / sizeof(testload[0]); i++)
  for (i = 0; i < sizeof(testload) / sizeof(testload[0]); i++)
    testload[i] = i + 1;
    testload[i] = i + 1;
 
 
  func0 ();
  func0 ();
  func1 ();
  func1 ();
  func2 ();
  func2 ();
  func3 ();
  func3 ();
  func4 ();
  func4 ();
  func5();
  func5();
  func6 ();
  func6 ();
  func7 ();
  func7 ();
  func8 ();
  func8 ();
  func9 ();
  func9 ();
 
 
  end ();
  end ();
 
 
#ifdef usestubs
#ifdef usestubs
  breakpoint ();
  breakpoint ();
#endif
#endif
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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