diff options
author | Richard Stallman <rms@gnu.org> | 1993-04-14 17:58:36 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-04-14 17:58:36 +0000 |
commit | 7e42fa83058e2ef9449006a298d33e3ae5db1993 (patch) | |
tree | f0c3be1bd2b744dc5af6c7a75b5b8bea25a89a42 | |
parent | c47783c0fc8fcca9aa920c09f9dae73430cf4976 (diff) | |
download | gcc-7e42fa83058e2ef9449006a298d33e3ae5db1993.zip gcc-7e42fa83058e2ef9449006a298d33e3ae5db1993.tar.gz gcc-7e42fa83058e2ef9449006a298d33e3ae5db1993.tar.bz2 |
(floatsidf2): Add missing arg to REAL_VALUE_ATOF.
From-SVN: r4155
-rw-r--r-- | gcc/config/i860/i860.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i860/i860.md b/gcc/config/i860/i860.md index 471b5b2..e7226cb 100644 --- a/gcc/config/i860/i860.md +++ b/gcc/config/i860/i860.md @@ -1585,7 +1585,7 @@ { REAL_VALUE_TYPE d; /* 4503601774854144 is (1 << 30) * ((1 << 22) + (1 << 1)). */ - d = REAL_VALUE_ATOF (\"4503601774854144\"); + d = REAL_VALUE_ATOF (\"4503601774854144\", DFmode); operands[2] = gen_reg_rtx (DFmode); operands[3] = CONST_DOUBLE_FROM_REAL_VALUE (d, DFmode); operands[4] = gen_reg_rtx (SImode); |