diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2013-11-17 16:14:46 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2013-11-17 16:14:46 +0000 |
commit | 1fe37220afe33a180e8fcfaae485fe878a62938e (patch) | |
tree | 86e0ab203b8850bdf532fcbf7bc776dcbb9acde7 /gcc/cfgexpand.h | |
parent | fd4da58cd8bee25149f50a249073b20487b5bb41 (diff) | |
download | gcc-1fe37220afe33a180e8fcfaae485fe878a62938e.tar.gz |
gimple.h: Reorder prototypes to match .c declaration order...
* gimple.h: Reorder prototypes to match .c declaration order, and remove
protyotypes for functions not in gimple.c.
(LABEL): Move to tree-into-ssa.c.
* gimple.c: Remove unused prototypes.
(get_base_address): Move to tree.c.
* tree.c (get_base_address): Relocate from gimple.c.
* builtins.h (validate_gimple_arglist): Add prototype.
* trans-mem.h (compute_transaction_bits, is_tm_ending): Add prototype.
* cfgexpand.h: New File.
(gimple_assign_rhs_to_tree, estimated_stack_frame_size): Add protoype.
* tree.h (build_addr): Move to tree-nested.h.
* tree-nested.h: New File.
(build_addr, lower_nested_functions, insert_field_into_struct): Add
prototypes.
* tree-inline.h (estimated_stack_frame_size): Remove prototype.
* ipa-inline-analysis.c: Include cfgexpand.h.
* cgraphunit.c: Include tree-nested.h.
* omp-low.c: Likewise.
* tree-parloops.c: Likewise.
* gimple-low.h: Likewise.
* tree-profile.h: Likewise.
* expr.c: Include cfgexpand.h.
* tree-affine.c: Likewise.
* tree-ssa.c: Likewise.
* tree-ssa-loop-im.c: Include trans-mem.h.
* tree-ssa-tail-merge.c: Likewise.
* value-prof.c: Include builtins.h and tree-nested.h.
* tree-into-ssa.c (LABEL): Define here.
* fortran/trans-intrinsic.c: Include tree-nested.h.
From-SVN: r204919
Diffstat (limited to 'gcc/cfgexpand.h')
-rw-r--r-- | gcc/cfgexpand.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/cfgexpand.h b/gcc/cfgexpand.h new file mode 100644 index 00000000000..04517a3e3f9 --- /dev/null +++ b/gcc/cfgexpand.h @@ -0,0 +1,26 @@ +/* Header file for lowering trees to RTL. + Copyright (C) 2013 Free Software Foundation, Inc. + +This file is part of GCC. + +GCC is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later +version. + +GCC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + +You should have received a copy of the GNU General Public License +along with GCC; see the file COPYING3. If not see +<http://www.gnu.org/licenses/>. */ + +#ifndef GCC_CFGEXPAND_H +#define GCC_CFGEXPAND_H + +extern tree gimple_assign_rhs_to_tree (gimple); +extern HOST_WIDE_INT estimated_stack_frame_size (struct cgraph_node *); + +#endif /* GCC_CFGEXPAND_H */ |