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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr46856.c] - Rev 688

Compare with Previous | Blame | View Log

struct data {
    int prio;
    signed char status;
};
 
struct base {
    unsigned _num;
    struct data vec[10];
};
 
static struct data *ix(struct base *base, unsigned i)
{
    return &base->vec[i];
}
 
struct heap {
    struct base base;
};
 
struct heap *heap;
 
void increase_insn_priority (int *fld, int amount)
{
    if (ix(heap ? &heap->base : 0, *fld)->status > 0)
	ix(heap ? &heap->base : 0, *fld)->prio += amount;
}
 

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.