view gcc/testsuite/gcc.c-torture/compile/pr31703.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

typedef unsigned long long HARD_REG_ELT_TYPE;
static HARD_REG_ELT_TYPE reload_reg_used_in_output_addr[30];
int reload_reg_reaches_end_p (unsigned int regno, int opnum)
{
    int i;
    for (i = opnum + 1; i < opnum; i++)
        if (reload_reg_used_in_output_addr[i]
            & ((HARD_REG_ELT_TYPE)1 << regno))
            return 0;
}