aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-structalias.c
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2006-07-07 14:23:57 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2006-07-07 14:23:57 +0000
commit83f676b352f6fc5981c6a477c92e735c04375ed6 (patch)
tree23576e37f688d2a706f1bfea77d9266942017b8d /gcc/tree-ssa-structalias.c
parent1ce35d260ce28d8bf428ef923169899be85a382e (diff)
downloadgcc-83f676b352f6fc5981c6a477c92e735c04375ed6.zip
gcc-83f676b352f6fc5981c6a477c92e735c04375ed6.tar.gz
gcc-83f676b352f6fc5981c6a477c92e735c04375ed6.tar.bz2
pointer-set.c (pointer_set_destroy): Correct whitespace.
* pointer-set.c (pointer_set_destroy): Correct whitespace. * cfgloopanal.c (dump_graph): Likewise. * dojump.c (discard_pending_stack_adjust): Likewise. * fix-header.c (TARGET_EXTRA_INCLUDE, TARGET_EXTRA_PRE_INCLUDES): Likewise. * alloc-pool.c (dump_alloc_pool_statistics): Likewise. * function.c (finalize_block_changes): Likewise. * gcc-common.c (ggc_free_overhead, dump_gcc_loc_statistics): Likewise. * tree-ssa-dce.c (clear_control_dependence_bitmap): Likewise. * rtl.c (dump_rtx_statistics): Likewise. * tree-ssa-structalias.c (sort_fieldstack, init_alias_heapvars): Likewise. * varray.c (dump_varray_statistics): Likewise. * dfp.c (encode_decimal32, decode_decimal32, encode_decimal64, decode_decimal64, encode_decimal128, decode_decimal128, decimal_real_to_decimal): Likewise. From-SVN: r115258
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r--gcc/tree-ssa-structalias.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c
index 2dca712..9be67ca 100644
--- a/gcc/tree-ssa-structalias.c
+++ b/gcc/tree-ssa-structalias.c
@@ -1,5 +1,5 @@
/* Tree based points-to analysis
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
Contributed by Daniel Berlin <dberlin@dberlin.org>
This file is part of GCC.
@@ -3572,7 +3572,8 @@ fieldoff_compare (const void *pa, const void *pb)
}
/* Sort a fieldstack according to the field offset and sizes. */
-void sort_fieldstack (VEC(fieldoff_s,heap) *fieldstack)
+void
+sort_fieldstack (VEC(fieldoff_s,heap) *fieldstack)
{
qsort (VEC_address (fieldoff_s, fieldstack),
VEC_length (fieldoff_s, fieldstack),
@@ -4685,7 +4686,7 @@ struct tree_opt_pass pass_ipa_pta =
};
/* Initialize the heapvar for statement mapping. */
-void
+void
init_alias_heapvars (void)
{
heapvar_for_stmt = htab_create_ggc (11, tree_map_hash, tree_map_eq, NULL);