From 581d4b9d55cea8af6d272b699a114a947468dd46 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 28 Dec 1994 05:07:33 +0000 Subject: [PATCH] Correct typos. From-SVN: r8695 --- gcc/config/i960/i960.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/i960/i960.c b/gcc/config/i960/i960.c index 7e6f97ab916..8ccbb4268e5 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"); -- 2.30.2