diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 22:08:11 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 22:08:11 +0000 |
commit | a632e132537fef2e6ea7826db0a3902da61cae85 (patch) | |
tree | 09da600f7cc78ed206a214937defe39d62f57519 /gcc/tree-phinodes.c | |
parent | e4ff8a73f0dce6d3c535d2663b453170413c4709 (diff) | |
download | gcc-a632e132537fef2e6ea7826db0a3902da61cae85.tar.gz |
* tree-phinodes.c (remove_phi_arg_num): Make it static.
* tree-flow.h: Remove the corresponding prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91037 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-phinodes.c')
-rw-r--r-- | gcc/tree-phinodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-phinodes.c b/gcc/tree-phinodes.c index c4240e7cb69..a6be8383855 100644 --- a/gcc/tree-phinodes.c +++ b/gcc/tree-phinodes.c @@ -354,7 +354,7 @@ add_phi_arg (tree *phi, tree def, edge e) removal by swapping the last alternative with the alternative we want to delete, then shrinking the vector. */ -void +static void remove_phi_arg_num (tree phi, int i) { int num_elem = PHI_NUM_ARGS (phi); |