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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.base/] [return.c] - Rev 1774

Go to most recent revision | Compare with Previous | Blame | View Log

#include <stdio.h>
/*  Test "return" command.  */
 
void func1 ()
{
  printf("in func1\n");
}
 
int
func2 ()
{
  return -5;
}
 
double
func3 ()
{
  return -5.0;
}
 
int tmp2;
double tmp3;
 
int main ()
{
#ifdef usestubs
  set_debug_traps();
  breakpoint();
#endif
  func1 ();
  printf("in main after func1\n");
  tmp2 = func2 ();
  tmp3 = func3 ();
  printf("exiting\n");
  return 0;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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