view gcc/testsuite/gcc.c-torture/compile/pr46856.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

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;
}