OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [gdb/] [testsuite/] [gdb.trace/] [circ.c] - Diff between revs 24 and 33

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

Rev 24 Rev 33
/*
/*
 * 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.