diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-08-24 03:27:39 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-08-24 03:27:39 -0600 |
commit | ea90cb6276d90d258aca08accbe17b7702d9f07b (patch) | |
tree | e12ec4276a6ab414ed70b5552b76af482f1367d2 | |
parent | 094439624ccda315dcf4fb8d40cc3fffd7f82bd2 (diff) | |
download | gcc-ea90cb6276d90d258aca08accbe17b7702d9f07b.zip gcc-ea90cb6276d90d258aca08accbe17b7702d9f07b.tar.gz gcc-ea90cb6276d90d258aca08accbe17b7702d9f07b.tar.bz2 |
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
-rw-r--r-- | gcc/stmt.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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. |