diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 14:51:05 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 14:51:05 +0000 |
commit | 4c1cee834ea0d7d2ce988e6ac1215ec2331e9f28 (patch) | |
tree | a795bc24901a55520035de502c1befbaa5c5f73c /gcc/ch/nloop.c | |
parent | 96d05fa3adf48ee49c3f2c13fdd7431e0ea4c240 (diff) | |
download | gcc-4c1cee834ea0d7d2ce988e6ac1215ec2331e9f28.tar.gz |
* All files: PROTO -> PARAMS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31456 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch/nloop.c')
-rw-r--r-- | gcc/ch/nloop.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gcc/ch/nloop.c b/gcc/ch/nloop.c index f011703cd33..0bd935200eb 100644 --- a/gcc/ch/nloop.c +++ b/gcc/ch/nloop.c @@ -35,26 +35,26 @@ Boston, MA 02111-1307, USA. */ ch-actions.c (lang_decode_option) will set this flag. */ int flag_local_loop_counter = 0; -extern tree chill_truthvalue_conversion PROTO((tree)); -extern rtx emit_line_note PROTO((char *, int)); -extern void error PROTO((char *, ...)); -extern rtx expand_assignment PROTO((tree, tree, int, int)); -extern void save_expr_under_name PROTO((tree, tree)); -extern void stamp_nesting_label PROTO((tree)); -extern int int_fits_type_p PROTO((tree, tree)); -extern void warning PROTO((char *, ...)); +extern tree chill_truthvalue_conversion PARAMS ((tree)); +extern rtx emit_line_note PARAMS ((char *, int)); +extern void error PARAMS ((char *, ...)); +extern rtx expand_assignment PARAMS ((tree, tree, int, int)); +extern void save_expr_under_name PARAMS ((tree, tree)); +extern void stamp_nesting_label PARAMS ((tree)); +extern int int_fits_type_p PARAMS ((tree, tree)); +extern void warning PARAMS ((char *, ...)); /* forward declarations */ -static int classify_loop PROTO((void)); -static int declare_temps PROTO((void)); -static int initialize_iter_var PROTO((void)); -static int maybe_skip_loop PROTO((void)); -static int top_loop_end_check PROTO((void)); -static int bottom_loop_end_check PROTO((void)); -static int increment_temps PROTO((void)); -static tree build_temporary_variable PROTO((char *, tree)); -static tree maybe_make_for_temp PROTO((tree, char *, tree)); -static tree chill_unsigned_type PROTO((tree)); +static int classify_loop PARAMS ((void)); +static int declare_temps PARAMS ((void)); +static int initialize_iter_var PARAMS ((void)); +static int maybe_skip_loop PARAMS ((void)); +static int top_loop_end_check PARAMS ((void)); +static int bottom_loop_end_check PARAMS ((void)); +static int increment_temps PARAMS ((void)); +static tree build_temporary_variable PARAMS ((char *, tree)); +static tree maybe_make_for_temp PARAMS ((tree, char *, tree)); +static tree chill_unsigned_type PARAMS ((tree)); /* In terms of the parameters passed to build_loop_iterator, * there are several types of loops. They are encoded by |