diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-17 16:14:46 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-17 16:14:46 +0000 |
commit | e797f49f7a9dcfc88d7d9fdab01fe6b621f82dac (patch) | |
tree | 86e0ab203b8850bdf532fcbf7bc776dcbb9acde7 /gcc/trans-mem.h | |
parent | 55c250028de823364233e6074b80f0147af677e2 (diff) | |
download | gcc-e797f49f7a9dcfc88d7d9fdab01fe6b621f82dac.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204919 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/trans-mem.h')
-rw-r--r-- | gcc/trans-mem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/trans-mem.h b/gcc/trans-mem.h index bf5a4484f75..09f0b4d66e4 100644 --- a/gcc/trans-mem.h +++ b/gcc/trans-mem.h @@ -34,3 +34,6 @@ #define PR_EXCEPTIONBLOCK 0x1000 #define PR_HASELSE 0x2000 #define PR_READONLY 0x4000 + +extern void compute_transaction_bits (void); +extern bool is_tm_ending (gimple); |