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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [coremaker2.c] - Diff between revs 827 and 840

Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/* Copyright 1992, 1993, 1994, 1995, 1996, 1999, 2007, 2008
/* Copyright 1992, 1993, 1994, 1995, 1996, 1999, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
/* Simple little program that just generates a core dump from inside some
/* Simple little program that just generates a core dump from inside some
   nested function calls.  Keep this as self contained as possible, I.E.
   nested function calls.  Keep this as self contained as possible, I.E.
   use no environment resources other than possibly abort(). */
   use no environment resources other than possibly abort(). */
 
 
#ifndef __STDC__
#ifndef __STDC__
#define const   /**/
#define const   /**/
#endif
#endif
 
 
#ifndef HAVE_ABORT
#ifndef HAVE_ABORT
#define HAVE_ABORT 1
#define HAVE_ABORT 1
#endif
#endif
 
 
#if HAVE_ABORT
#if HAVE_ABORT
#define ABORT abort()
#define ABORT abort()
#else
#else
#define ABORT {char *invalid = 0; *invalid = 0xFF;}
#define ABORT {char *invalid = 0; *invalid = 0xFF;}
#endif
#endif
 
 
/* Don't make these automatic vars or we will have to walk back up the
/* Don't make these automatic vars or we will have to walk back up the
   stack to access them. */
   stack to access them. */
 
 
char *buf1;
char *buf1;
char *buf2;
char *buf2;
 
 
int coremaker_data = 1; /* In Data section */
int coremaker_data = 1; /* In Data section */
int coremaker_bss;      /* In BSS section */
int coremaker_bss;      /* In BSS section */
 
 
const int coremaker_ro = 201;   /* In Read-Only Data section */
const int coremaker_ro = 201;   /* In Read-Only Data section */
 
 
void
void
func2 (int x)
func2 (int x)
{
{
  int coremaker_local[5];
  int coremaker_local[5];
  int i;
  int i;
  static int y;
  static int y;
 
 
  /* Make sure that coremaker_local doesn't get optimized away. */
  /* Make sure that coremaker_local doesn't get optimized away. */
  for (i = 0; i < 5; i++)
  for (i = 0; i < 5; i++)
    coremaker_local[i] = i;
    coremaker_local[i] = i;
  coremaker_bss = 0;
  coremaker_bss = 0;
  for (i = 0; i < 5; i++)
  for (i = 0; i < 5; i++)
    coremaker_bss += coremaker_local[i];
    coremaker_bss += coremaker_local[i];
  coremaker_data = coremaker_ro + 1;
  coremaker_data = coremaker_ro + 1;
  y = 10 * x;
  y = 10 * x;
  ABORT;
  ABORT;
}
}
 
 
void
void
func1 (int x)
func1 (int x)
{
{
  func2 (x * 2);
  func2 (x * 2);
}
}
 
 
int main ()
int main ()
{
{
  func1 (10);
  func1 (10);
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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