diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 12:35:56 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 12:35:56 +0000 |
commit | 60b8c5b34ab84501de6a513517a9e78e3e2c4d00 (patch) | |
tree | 2e1f352052c069dc89b540d510fb95d6fac245ed /gcc/ssa.h | |
parent | 3b2e396d1023315f275d04017792c60e5c5ff4cd (diff) | |
download | gcc-60b8c5b34ab84501de6a513517a9e78e3e2c4d00.tar.gz |
* sbitmap.c: Convert prototypes to ISO C90.
* sbitmap.h: Likewise.
* scan-decls.c: Likewise.
* scan.c: Likewise.
* sched-deps.c: Likewise.
* sched-ebb.c: Likewise.
* sched-int.h: Likewise.
* sched-rgn.c: Likewise.
* sched-vis.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* sreal.c: Likewise.
* sreal.h: Likewise.
* ssa-ccp.c: Likewise.
* ssa-dce.c: Likewise.
* ssa.c: Likewise.
* ssa.h: Likewise.
* stack.h: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* stringpool.c: Likewise.
* target.h: Likewise.
* timevar.c: Likewise.
* timevar.h: Likewise.
* tlink.c: Likewise.
* tracer.c: Likewise.
* tree-inline.c: Likewise.
* tree-inline.h: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69002 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ssa.h')
-rw-r--r-- | gcc/ssa.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/gcc/ssa.h b/gcc/ssa.h index f7593d003a9..ab3cdf1a789 100644 --- a/gcc/ssa.h +++ b/gcc/ssa.h @@ -1,5 +1,5 @@ /* Static Single Assignment (SSA) definitions for GCC - Copyright (C) 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. Written by Jeffrey D. Oldham <oldham@codesourcery.com>. This file is part of GCC. @@ -21,23 +21,21 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Main SSA routines. */ -extern void convert_to_ssa PARAMS ((void)); -extern void convert_from_ssa PARAMS ((void)); -typedef int (*successor_phi_fn) PARAMS ((rtx, int, int, void *)); -extern int for_each_successor_phi PARAMS ((basic_block bb, - successor_phi_fn, - void *)); -void compute_dominance_frontiers PARAMS ((sbitmap *frontiers, - dominance_info idom)); -extern int remove_phi_alternative PARAMS ((rtx, basic_block)); +extern void convert_to_ssa (void); +extern void convert_from_ssa (void); +typedef int (*successor_phi_fn) (rtx, int, int, void *); +extern int for_each_successor_phi (basic_block bb, successor_phi_fn, + void *); +void compute_dominance_frontiers (sbitmap *frontiers, dominance_info idom); +extern int remove_phi_alternative (rtx, basic_block); /* Optimizations. */ /* In ssa-dce.c */ -extern void ssa_eliminate_dead_code PARAMS ((void)); +extern void ssa_eliminate_dead_code (void); /* In ssa-ccp.c */ -extern void ssa_const_prop PARAMS ((void)); +extern void ssa_const_prop (void); /* SSA definitions and uses. */ |