diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 01:56:10 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 01:56:10 +0000 |
commit | cc1900961aebe17dc7ff52e21a54ec71148bd951 (patch) | |
tree | 7e0d274b9d7e3a3888aa3d22cd6cba4854e43f24 /gcc/toplev.h | |
parent | 9dc9d0d3203a4285c79fb71ff4c5c92531ac45aa (diff) | |
download | gcc-cc1900961aebe17dc7ff52e21a54ec71148bd951.tar.gz |
* toplev.c (set_float_handler): Make static.
* toplev.h: Don't prototype set_float_handler.
* simplify-rtx.c: Don't include setjmp.h.
(simplify_unary_real, simplify_binary_real, simplify_binary_is2orm1):
New functions.
(simplify_unary_operation, simplify_binary_operation): Use them,
via do_float_handler.
* fold-const.c: Don't include setjmp.h.
(exact_real_inverse_1): New function.
(exact_real_inverse): Use it, via do_float_handler.
* varasm.c: Don't include setjmp.h.
(assemble_real_1): New function.
(assemble_real): Use it, via do_float_handler.
Call internal_error if we get a trap here.
* c-parse.in, cse.c, cselib.c, ch/lex.c, config/i386/i386.c,
config/pj/pj.c, config/s390/s390.c: Don't include setjmp.h.
* java/lex.h: Don't include setjmp.h. Don't define
SET_FLOAT_HANDLER or prototype set_float_handler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44815 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index 2892dc4cab0..bc9b1608c62 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -102,9 +102,6 @@ extern void error_for_asm PARAMS ((struct rtx_def *, extern void warning_for_asm PARAMS ((struct rtx_def *, const char *, ...)) ATTRIBUTE_PRINTF_2; -#if defined (_JBLEN) || defined (setjmp) -extern void set_float_handler PARAMS ((jmp_buf)); -#endif extern int do_float_handler PARAMS ((void (*) (PTR), PTR)); #ifdef BUFSIZ |