diff options
author | Richard Henderson <rth@redhat.com> | 2004-06-23 00:43:21 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-06-23 00:43:21 -0700 |
commit | 65355d53c368e290265d38f822b1bbb8b3d23c69 (patch) | |
tree | 8a64183917aa821491a290388a2d847ef5f31dc6 /gcc/tree-gimple.h | |
parent | f241bf89479214a544e12446b52eb9d89869aebe (diff) | |
download | gcc-65355d53c368e290265d38f822b1bbb8b3d23c69.zip gcc-65355d53c368e290265d38f822b1bbb8b3d23c69.tar.gz gcc-65355d53c368e290265d38f822b1bbb8b3d23c69.tar.bz2 |
c-gimplify.c (gimplify_decl_stmt): Update gimplify_type_sizes call.
* c-gimplify.c (gimplify_decl_stmt): Update gimplify_type_sizes call.
Use gimplify_and_add.
* c-typeck.c (c_finish_if_stmt): Use NULL instead of empty stmt.
* gimplify.c (build_and_jump, gimplify_exit_expr,
gimplify_init_constructor, gimplify_save_expr, gimple_push_cleanup,
gimplify_stmt, gimplify_expr): Likewise.
(shortcut_cond_expr): Handle NULL arms of COND_EXPR.
(gimplify_statement_list): Remove NULL entries.
(gimplify_to_stmt_list): Handle NULL results.
(gimplify_type_sizes): Add list_p argument.
(gimplify_one_sizepos): Don't use internal pre/post queue.
* tree-gimple.h (gimplify_type_sizes): Update.
ada/
* trans.c (gnat_gimplify_stmt): Update gimplify_type_sizes call.
From-SVN: r83539
Diffstat (limited to 'gcc/tree-gimple.h')
-rw-r--r-- | gcc/tree-gimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-gimple.h b/gcc/tree-gimple.h index 9e6209d..9b86e98 100644 --- a/gcc/tree-gimple.h +++ b/gcc/tree-gimple.h @@ -102,7 +102,7 @@ enum gimplify_status { extern enum gimplify_status gimplify_expr (tree *, tree *, tree *, bool (*) (tree), fallback_t); -extern tree gimplify_type_sizes (tree); +extern void gimplify_type_sizes (tree, tree *); extern void gimplify_one_sizepos (tree *, tree *); extern void gimplify_stmt (tree *); extern void gimplify_to_stmt_list (tree *); |