diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-25 20:52:28 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-25 20:52:28 +0000 |
commit | 536f5fb115792c70f4e8e459454a9aaeb83cb8f4 (patch) | |
tree | 8c35b0cf468101ecc396f5eb7631e99dc328e79c /gcc/testsuite/gcc.dg/c90-hexfloat-1.c | |
parent | cb6b7c90629c20399ced93bb7ef0ee60ec166e80 (diff) | |
download | gcc-536f5fb115792c70f4e8e459454a9aaeb83cb8f4.tar.gz |
* toplev.c: Don't include setjmp.h. Kill float_handler_set,
float_handled, float_handler, float_signal, set_float_handler,
and do_float_handler. Set handler for SIGFPE to crash_signal.
* toplev.h: Don't prototype do_float_handler.
* c-lex.c: Fold parse_float into lex_number. Make warning
about portability of hex float constants more informative, and
don't issue it on top of a syntax error.
* fold-const.c: Fold const_binop_1 and fold_convert_1 into
their callers.
* real.h: Define REAL_VALUE_ABS here...
* simplify-rtx.c: ... not here. Fold check_fold_consts,
simplify_unary_real, simplify_binary_real, and
simplify_binary_is2orm1 into their callers.
* tree.c: Fold build_real_from_int_cst_1 into caller.
* doc/tm.texi: Document REAL_VALUE_ABS and REAL_VALUE_NEGATIVE.
* tsystem.h: Include float.h here...
* libgcc2.c: ... not here.
java:
* lex.c: Change java_perform_atof to take normal parameters
instead of a pointer to a parameter block. Call it directly
from java_lex.
testsuite:
* gcc.dg/c90-hexfloat-1.c: Adjust error regexps.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/c90-hexfloat-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c90-hexfloat-1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/c90-hexfloat-1.c b/gcc/testsuite/gcc.dg/c90-hexfloat-1.c index 122d5ee5e71..2dd90a1e681 100644 --- a/gcc/testsuite/gcc.dg/c90-hexfloat-1.c +++ b/gcc/testsuite/gcc.dg/c90-hexfloat-1.c @@ -4,8 +4,8 @@ /* { dg-options "-std=iso9899:1990 -pedantic-errors" } */ double d = 0x1.2p2; /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "radix 16" "hex float error" { target *-*-* } 6 } */ +/* { dg-error "hexadecimal floating" "hex float error" { target *-*-* } 6 } */ double d1 = 0x1p2; /* { dg-bogus "warning" "warning in place of error" } */ -/* { dg-error "radix 16" "hex float error" { target *-*-* } 8 } */ +/* { dg-error "hexadecimal floating" "hex float error" { target *-*-* } 8 } */ double d2 = 0x1...p2; /* { dg-bogus "warning" "warning in place of error" } */ /* { dg-error "too many decimal points" "bad hex float" { target *-*-* } 10 } */ |