diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-13 08:34:34 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-13 08:34:34 -0500 |
commit | 2e15b172de724f57679d6cf2acba6b366bc4c7dd (patch) | |
tree | 05c3b0be279a8809c40e15d47e4422915783d3f9 /gcc/config/convex/convex.h | |
parent | c05f751c24182e733cb986b7660ec1223be52428 (diff) | |
download | gcc-2e15b172de724f57679d6cf2acba6b366bc4c7dd.tar.gz |
Add OVERFLOW operand to CHECK_FLOAT_VALUE.
From-SVN: r6770
Diffstat (limited to 'gcc/config/convex/convex.h')
-rw-r--r-- | gcc/config/convex/convex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/convex/convex.h b/gcc/config/convex/convex.h index 9bb8e70af04..af1a0f5213c 100644 --- a/gcc/config/convex/convex.h +++ b/gcc/config/convex/convex.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler. Convex version. - Copyright (C) 1988, 1993 Free Software Foundation, Inc. + Copyright (C) 1988, 1993, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -1180,8 +1180,8 @@ enum reg_class { extern double atof(); /* Check a `double' value for validity for a particular machine mode. */ -#define CHECK_FLOAT_VALUE(mode, d) \ - check_float_value ((mode), &(d)) +#define CHECK_FLOAT_VALUE(MODE, D, OVERFLOW) \ + overflow = check_float_value (MODE, &D, OVERFLOW) /* Tell final.c how to eliminate redundant test instructions. */ |