aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>1994-12-28 05:07:33 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>1994-12-28 05:07:33 +0000
commit581d4b9d55cea8af6d272b699a114a947468dd46 (patch)
tree397f33bd89ffde44f970bc113b34a77b785f3957 /gcc
parent4e44807bc46fbd7e20af0d84f47b646bb27e6e6f (diff)
downloadgcc-581d4b9d55cea8af6d272b699a114a947468dd46.zip
gcc-581d4b9d55cea8af6d272b699a114a947468dd46.tar.gz
gcc-581d4b9d55cea8af6d272b699a114a947468dd46.tar.bz2
Correct typos.
From-SVN: r8695
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/i960/i960.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i960/i960.c b/gcc/config/i960/i960.c
index 7e6f97a..8ccbb42 100644
--- a/gcc/config/i960/i960.c
+++ b/gcc/config/i960/i960.c
@@ -2108,7 +2108,7 @@ i960_output_double (file, value)
long value_long[2];
REAL_VALUE_TO_TARGET_DOUBLE (value, value_long);
- fprintf (stream, "\t.word\t0x%08lx\t\t# %.20g\n\t.word\t0x%08lx\n",
+ fprintf (file, "\t.word\t0x%08lx\t\t# %.20g\n\t.word\t0x%08lx\n",
value_long[0], value, value_long[1]);
#else
if (REAL_VALUE_ISINF (value))
@@ -2130,7 +2130,7 @@ i960_output_float (file, value)
long value_long;
REAL_VALUE_TO_TARGET_SINGLE (value, value_long);
- fprintf (stream, "\t.word\t0x%08lx\t\t# %.12g (float)\n", value_long, value);
+ fprintf (file, "\t.word\t0x%08lx\t\t# %.12g (float)\n", value_long, value);
#else
if (REAL_VALUE_ISINF (value))
fprintf (file, "\t.word 0x7f800000 # Infinity\n");