diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-17 09:08:32 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-08-17 09:08:32 +0000 |
commit | ac247d85913e4a5285c158ff0ae9aafd4d7a1a9e (patch) | |
tree | c0d16a636f0f4c2d062c0b66f041163db8541aeb /gcc/except.h | |
parent | 6c82faf15f0daaa941bda569b791122b906ff92f (diff) | |
download | gcc-ac247d85913e4a5285c158ff0ae9aafd4d7a1a9e.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21781 138bc75d-0d04-0410-961f-82ee72b054a4
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 |