diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-04-11 04:51:57 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-04-11 04:51:57 +0000 |
commit | 1ae5c6c2f79425255f112b1c2368599c7680f937 (patch) | |
tree | 11655f2d77971a5da7e9f7039065c9f4dbefc78e | |
parent | b1d4fd8959417959e7bcf98c8718dead8bd94079 (diff) | |
download | gcc-1ae5c6c2f79425255f112b1c2368599c7680f937.zip gcc-1ae5c6c2f79425255f112b1c2368599c7680f937.tar.gz gcc-1ae5c6c2f79425255f112b1c2368599c7680f937.tar.bz2 |
jump.c (jump_optimize_1): Make the definition static to match the prototype.
* jump.c (jump_optimize_1): Make the definition static to match
the prototype.
From-SVN: r26346
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/jump.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94a1f4a..8156f68 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Apr 11 07:43:44 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * jump.c (jump_optimize_1): Make the definition static to match + the prototype. + Sat Apr 10 22:51:53 1999 Jan Hubicka <hubicka@limax.paru.cas.cz> * flow.c (life_analysis): New parameter remove_dead_code. @@ -176,7 +176,7 @@ rebuild_jump_labels (f) It works because `delete_insn' checks the value of `optimize' and refrains from actually deleting when that is 0. */ -void +static void jump_optimize_1 (f, cross_jump, noop_moves, after_regscan, mark_labels_only) rtx f; int cross_jump; |