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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20001117-1.c] - Diff between revs 149 and 154

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

Rev 149 Rev 154
/* { dg-do run } */
/* { dg-do run } */
/* { dg-options "-O2 -finstrument-functions" } */
/* { dg-options "-O2 -finstrument-functions" } */
 
 
extern void abort (void);
extern void abort (void);
extern void exit (int);
extern void exit (int);
 
 
double
double
foo (double a, double b)
foo (double a, double b)
{
{
  double c;
  double c;
  if (0.0 < a)
  if (0.0 < a)
    c = a;
    c = a;
  else if (b > 0.0)
  else if (b > 0.0)
    c = 0.0;
    c = 0.0;
  else
  else
    return 0;
    return 0;
  return 2.0 * (b - c);
  return 2.0 * (b - c);
}
}
 
 
int main ()
int main ()
{
{
  if (foo (1.0, 4.0) != 6.0)
  if (foo (1.0, 4.0) != 6.0)
    abort ();
    abort ();
  exit (0);
  exit (0);
}
}
 
 
void __attribute__((no_instrument_function)) __cyg_profile_func_enter(void *this_fn, void *call_site) { }
void __attribute__((no_instrument_function)) __cyg_profile_func_enter(void *this_fn, void *call_site) { }
void __attribute__((no_instrument_function)) __cyg_profile_func_exit(void *this_fn, void *call_site) { }
void __attribute__((no_instrument_function)) __cyg_profile_func_exit(void *this_fn, void *call_site) { }
 
 

powered by: WebSVN 2.1.0

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