aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>2002-10-11 21:10:00 +0000
committerJohn David Anglin <dave@hiauly1.hia.nrc.ca>2002-10-11 21:10:00 +0000
commitc1223a05205f6b56dbf4ea079a1e634aaebdbc50 (patch)
tree70e569fabd7c20b1d482290090569a1e037d0fb9 /gcc/real.h
parentebf254a8563cdcd821fb09b6711121308f6396b9 (diff)
* cfganal.c (dfs_enumerate_from): Use PARAMS.
* genautomata.c (output_insn_code_cases): Likewise. * real.c (real_format): Likewise. * tree.c (tree_size): Revise expressions using TREE_CODE_LENGTH to ensure value is promoted before doing subtraction. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@58064 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.h')
-rw-r--r--gcc/real.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/real.h b/gcc/real.h
index fc84a109281..59340f7d905 100644
--- a/gcc/real.h
+++ b/gcc/real.h
@@ -104,8 +104,10 @@ extern char test_real_width
struct real_format
{
/* Move to and from the target bytes. */
- void (*encode) (const struct real_format *, long *, const REAL_VALUE_TYPE *);
- void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, const long *);
+ void (*encode) PARAMS ((const struct real_format *, long *,
+ const REAL_VALUE_TYPE *));
+ void (*decode) PARAMS ((const struct real_format *, REAL_VALUE_TYPE *,
+ const long *));
/* The radix of the exponent and digits of the significand. */
int b;