view gcc/testsuite/gcc.c-torture/compile/pr31703.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
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;
}