diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-08-17 09:08:32 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-08-17 03:08:32 -0600 |
commit | 804a4e13f8c8f010adf3db2a0f20e424d4edc0e0 (patch) | |
tree | c0d16a636f0f4c2d062c0b66f041163db8541aeb /gcc/except.h | |
parent | f5220a5dd39feb469be2bf80a5b455e2ce766f5e (diff) | |
download | gcc-804a4e13f8c8f010adf3db2a0f20e424d4edc0e0.tar.gz |
c-decl.c (init_decl_processing): Remove unneeded &.
* c-decl.c (init_decl_processing): Remove unneeded &.
* alpha.h (alpha_initialize_trampoline): Provide prototype.
* except.c (set_exception_lang_code, set_exception_version_code):
Change parameter from `short' to `int' to avoid using a gcc
extension.
* except.h (set_exception_lang_code, set_exception_version_code):
Likewise for prototypes.
* flow.c (count_reg_references): Remove unused variables `regno'
and `i'.
* gcse.c (hash_scan_insn): Declare parameter `in_libcall_block'.
* prefix.c (translate_name): Cast the result of `alloca'.
* varray.h (VARRAY_FREE): Reimplement as a `do-while(0)' statement.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r21781
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.h b/gcc/except.h index c08d0c58399..b498a69c7e0 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -149,8 +149,8 @@ extern int doing_eh PROTO ((int)); /* Toplevel initialization for EH. */ -void set_exception_lang_code PROTO((short)); -void set_exception_version_code PROTO((short)); +void set_exception_lang_code PROTO((int)); +void set_exception_version_code PROTO((int)); /* A list of handlers asocciated with an exception region. HANDLER_LABEL is the the label that control should be transfered to if the data |