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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20011008-3.c] - Diff between revs 297 and 338

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

Rev 297 Rev 338
extern void exit (int);
extern void exit (int);
extern void abort (void);
extern void abort (void);
 
 
typedef unsigned int u_int32_t;
typedef unsigned int u_int32_t;
typedef unsigned char u_int8_t;
typedef unsigned char u_int8_t;
typedef int int32_t;
typedef int int32_t;
 
 
typedef enum {
typedef enum {
        TXNLIST_DELETE,
        TXNLIST_DELETE,
        TXNLIST_LSN,
        TXNLIST_LSN,
        TXNLIST_TXNID,
        TXNLIST_TXNID,
        TXNLIST_PGNO
        TXNLIST_PGNO
} db_txnlist_type;
} db_txnlist_type;
 
 
struct __db_lsn; typedef struct __db_lsn DB_LSN;
struct __db_lsn; typedef struct __db_lsn DB_LSN;
struct __db_lsn {
struct __db_lsn {
        u_int32_t file;
        u_int32_t file;
        u_int32_t offset;
        u_int32_t offset;
};
};
struct __db_txnlist; typedef struct __db_txnlist DB_TXNLIST;
struct __db_txnlist; typedef struct __db_txnlist DB_TXNLIST;
 
 
struct __db_txnlist {
struct __db_txnlist {
        db_txnlist_type type;
        db_txnlist_type type;
        struct { struct __db_txnlist *le_next; struct __db_txnlist **le_prev; } links;
        struct { struct __db_txnlist *le_next; struct __db_txnlist **le_prev; } links;
        union {
        union {
                struct {
                struct {
                        u_int32_t txnid;
                        u_int32_t txnid;
                        int32_t generation;
                        int32_t generation;
                        int32_t aborted;
                        int32_t aborted;
                } t;
                } t;
                struct {
                struct {
 
 
 
 
                        u_int32_t flags;
                        u_int32_t flags;
                        int32_t fileid;
                        int32_t fileid;
                        u_int32_t count;
                        u_int32_t count;
                        char *fname;
                        char *fname;
                } d;
                } d;
                struct {
                struct {
                        int32_t ntxns;
                        int32_t ntxns;
                        int32_t maxn;
                        int32_t maxn;
                        DB_LSN *lsn_array;
                        DB_LSN *lsn_array;
                } l;
                } l;
                struct {
                struct {
                        int32_t nentries;
                        int32_t nentries;
                        int32_t maxentry;
                        int32_t maxentry;
                        char *fname;
                        char *fname;
                        int32_t fileid;
                        int32_t fileid;
                        void *pgno_array;
                        void *pgno_array;
                        u_int8_t uid[20];
                        u_int8_t uid[20];
                } p;
                } p;
        } u;
        } u;
};
};
 
 
int log_compare (const DB_LSN *a, const DB_LSN *b)
int log_compare (const DB_LSN *a, const DB_LSN *b)
{
{
  return 1;
  return 1;
}
}
 
 
 
 
int
int
__db_txnlist_lsnadd(int val, DB_TXNLIST *elp, DB_LSN *lsnp, u_int32_t flags)
__db_txnlist_lsnadd(int val, DB_TXNLIST *elp, DB_LSN *lsnp, u_int32_t flags)
{
{
   int i;
   int i;
 
 
   for (i = 0; i < (!(flags & (0x1)) ? 1 : elp->u.l.ntxns); i++)
   for (i = 0; i < (!(flags & (0x1)) ? 1 : elp->u.l.ntxns); i++)
     {
     {
        int __j;
        int __j;
        DB_LSN __tmp;
        DB_LSN __tmp;
        val++;
        val++;
        for (__j = 0; __j < elp->u.l.ntxns - 1; __j++)
        for (__j = 0; __j < elp->u.l.ntxns - 1; __j++)
          if (log_compare(&elp->u.l.lsn_array[__j], &elp->u.l.lsn_array[__j + 1]) < 0)
          if (log_compare(&elp->u.l.lsn_array[__j], &elp->u.l.lsn_array[__j + 1]) < 0)
          {
          {
             __tmp = elp->u.l.lsn_array[__j];
             __tmp = elp->u.l.lsn_array[__j];
             elp->u.l.lsn_array[__j] = elp->u.l.lsn_array[__j + 1];
             elp->u.l.lsn_array[__j] = elp->u.l.lsn_array[__j + 1];
             elp->u.l.lsn_array[__j + 1] = __tmp;
             elp->u.l.lsn_array[__j + 1] = __tmp;
          }
          }
     }
     }
 
 
   *lsnp = elp->u.l.lsn_array[0];
   *lsnp = elp->u.l.lsn_array[0];
   return val;
   return val;
}
}
 
 
#ifndef STACK_SIZE
#ifndef STACK_SIZE
#define VLEN    1235
#define VLEN    1235
#else
#else
#define VLEN (STACK_SIZE/10)
#define VLEN (STACK_SIZE/10)
#endif
#endif
 
 
int main (void)
int main (void)
{
{
  DB_TXNLIST el;
  DB_TXNLIST el;
  DB_LSN lsn, lsn_a[VLEN];
  DB_LSN lsn, lsn_a[VLEN];
 
 
  el.u.l.ntxns = VLEN-1;
  el.u.l.ntxns = VLEN-1;
  el.u.l.lsn_array = lsn_a;
  el.u.l.lsn_array = lsn_a;
 
 
  if (__db_txnlist_lsnadd (0, &el, &lsn, 0) != 1)
  if (__db_txnlist_lsnadd (0, &el, &lsn, 0) != 1)
    abort ();
    abort ();
 
 
  if (__db_txnlist_lsnadd (0, &el, &lsn, 1) != VLEN-1)
  if (__db_txnlist_lsnadd (0, &el, &lsn, 1) != VLEN-1)
    abort ();
    abort ();
 
 
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

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