stmt.c (emit_case_nodes): Change rtx_function to rtx_fn to avoid clash with global type.

8
        * stmt.c (emit_case_nodes): Change rtx_function to rtx_fn to avoid
        clash with global type.

From-SVN: r21932
This commit is contained in:
Jeff Law 1998-08-24 03:27:39 -06:00
parent 094439624c
commit ea90cb6276
1 changed files with 5 additions and 5 deletions

View File

@ -5539,11 +5539,11 @@ emit_case_nodes (index, node, default_label, index_type)
{
/* If INDEX has an unsigned type, we must make unsigned branches. */
int unsignedp = TREE_UNSIGNED (index_type);
typedef rtx rtx_function ();
rtx_function *gen_bgt_pat = unsignedp ? gen_bgtu : gen_bgt;
rtx_function *gen_bge_pat = unsignedp ? gen_bgeu : gen_bge;
rtx_function *gen_blt_pat = unsignedp ? gen_bltu : gen_blt;
rtx_function *gen_ble_pat = unsignedp ? gen_bleu : gen_ble;
typedef rtx rtx_fn ();
rtx_fn *gen_bgt_pat = unsignedp ? gen_bgtu : gen_bgt;
rtx_fn *gen_bge_pat = unsignedp ? gen_bgeu : gen_bge;
rtx_fn *gen_blt_pat = unsignedp ? gen_bltu : gen_blt;
rtx_fn *gen_ble_pat = unsignedp ? gen_bleu : gen_ble;
enum machine_mode mode = GET_MODE (index);
/* See if our parents have already tested everything for us.