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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [compat/] [scalar-return-4_x.c] - Diff between revs 298 and 384

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

Rev 298 Rev 384
#include "compat-common.h"
#include "compat-common.h"
 
 
#define T(NAME, TYPE, INITVAL)                                  \
#define T(NAME, TYPE, INITVAL)                                  \
TYPE g01##NAME;                                                 \
TYPE g01##NAME;                                                 \
                                                                \
                                                                \
extern void init##NAME (TYPE *p, TYPE v);                       \
extern void init##NAME (TYPE *p, TYPE v);                       \
extern void checkg##NAME (void);                                \
extern void checkg##NAME (void);                                \
extern TYPE test0##NAME (void);                                 \
extern TYPE test0##NAME (void);                                 \
extern TYPE test1##NAME (TYPE);                                 \
extern TYPE test1##NAME (TYPE);                                 \
                                                                \
                                                                \
void                                                            \
void                                                            \
check##NAME (TYPE x, TYPE v)                                    \
check##NAME (TYPE x, TYPE v)                                    \
{                                                               \
{                                                               \
  if (x != v)                                                   \
  if (x != v)                                                   \
    DEBUG_CHECK                                                 \
    DEBUG_CHECK                                                 \
}                                                               \
}                                                               \
                                                                \
                                                                \
void                                                            \
void                                                            \
testit##NAME (void)                                             \
testit##NAME (void)                                             \
{                                                               \
{                                                               \
  TYPE rslt;                                                    \
  TYPE rslt;                                                    \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (" init: ");                                      \
  DEBUG_FPUTS (" init: ");                                      \
  init##NAME (&g01##NAME,  1);                                  \
  init##NAME (&g01##NAME,  1);                                  \
  checkg##NAME ();                                              \
  checkg##NAME ();                                              \
  DEBUG_NL;                                                     \
  DEBUG_NL;                                                     \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (" test0: ");                                     \
  DEBUG_FPUTS (" test0: ");                                     \
  rslt = test0##NAME ();                                        \
  rslt = test0##NAME ();                                        \
  check##NAME (rslt, g01##NAME);                                \
  check##NAME (rslt, g01##NAME);                                \
  DEBUG_NL;                                                     \
  DEBUG_NL;                                                     \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (#NAME);                                          \
  DEBUG_FPUTS (" test1: ");                                     \
  DEBUG_FPUTS (" test1: ");                                     \
  rslt = test1##NAME (g01##NAME);                               \
  rslt = test1##NAME (g01##NAME);                               \
  check##NAME (rslt, g01##NAME);                                \
  check##NAME (rslt, g01##NAME);                                \
  DEBUG_NL;                                                     \
  DEBUG_NL;                                                     \
}
}
 
 
#ifndef SKIP_COMPLEX
#ifndef SKIP_COMPLEX
#ifndef SKIP_COMPLEX_INT
#ifndef SKIP_COMPLEX_INT
T(cc, _Complex char, CINT (0, 1))
T(cc, _Complex char, CINT (0, 1))
T(cs, _Complex short, CINT (1 + 2))
T(cs, _Complex short, CINT (1 + 2))
#endif
#endif
T(cf, _Complex float, CDBL (1.0, 2.0))
T(cf, _Complex float, CDBL (1.0, 2.0))
#endif
#endif
 
 
#undef T
#undef T
 
 
void
void
scalar_return_4_x ()
scalar_return_4_x ()
{
{
DEBUG_INIT
DEBUG_INIT
 
 
#define T(NAME) testit##NAME ();
#define T(NAME) testit##NAME ();
 
 
#ifndef SKIP_COMPLEX
#ifndef SKIP_COMPLEX
#ifndef SKIP_COMPLEX_INT
#ifndef SKIP_COMPLEX_INT
T(cc)
T(cc)
T(cs)
T(cs)
#endif
#endif
T(cf)
T(cf)
#endif
#endif
 
 
DEBUG_FINI
DEBUG_FINI
 
 
if (fails != 0)
if (fails != 0)
  abort ();
  abort ();
 
 
#undef T
#undef T
}
}
 
 

powered by: WebSVN 2.1.0

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