From ea90cb6276d90d258aca08accbe17b7702d9f07b Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 24 Aug 1998 03:27:39 -0600 Subject: [PATCH] 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 --- gcc/stmt.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/stmt.c b/gcc/stmt.c index 61766bf13ce..b524362d524 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -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.