diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-14 17:14:43 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-14 17:14:43 +0000 |
commit | 711d877c9e4f9b3250bc50e54c672b40840d574a (patch) | |
tree | c581c8d237ef2fffdfeee6182fd81e25ea6ed527 /gcc/explow.c | |
parent | 318881c06efdf1bc4039f1bba7eab820d69735a2 (diff) | |
download | gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.zip gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.gz gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.bz2 |
eh-common.h: PROTO -> PARAMS.
* eh-common.h: PROTO -> PARAMS.
* emit-rtl.c: Likewise.
* errors.c: Likewise.
* errors.h: Likewise.
* except.c: Likewise.
* except.h: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* final.c: Likewise.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* function.h: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
From-SVN: r31419
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index ca4259a..65e43a7 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -1,5 +1,5 @@ /* Subroutines for manipulating rtx's in semantically interesting ways. - Copyright (C) 1987, 91, 94-97, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1987, 91, 94-99, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -38,8 +38,8 @@ Boston, MA 02111-1307, USA. */ #define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY #endif -static rtx break_out_memory_refs PROTO((rtx)); -static void emit_stack_probe PROTO((rtx)); +static rtx break_out_memory_refs PARAMS ((rtx)); +static void emit_stack_probe PARAMS ((rtx)); /* Truncate and perhaps sign-extend C as appropriate for MODE. */ @@ -938,7 +938,7 @@ emit_stack_save (save_level, psave, after) { rtx sa = *psave; /* The default is that we use a move insn and save in a Pmode object. */ - rtx (*fcn) PROTO ((rtx, rtx)) = gen_move_insn; + rtx (*fcn) PARAMS ((rtx, rtx)) = gen_move_insn; enum machine_mode mode = STACK_SAVEAREA_MODE (save_level); /* See if this machine has anything special to do for this kind of save. */ @@ -1020,7 +1020,7 @@ emit_stack_restore (save_level, sa, after) rtx sa; { /* The default is that we use a move insn. */ - rtx (*fcn) PROTO ((rtx, rtx)) = gen_move_insn; + rtx (*fcn) PARAMS ((rtx, rtx)) = gen_move_insn; /* See if this machine has anything special to do for this kind of save. */ switch (save_level) |