aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-11-04 16:31:59 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-11-04 16:31:59 -0500
commit245564053af896c806a357d82023a1f1b706651b (patch)
treef8158cbd6008cca1619534e5d5e8dc34ed0343cf /gcc
parent13837939f45fd56fd608a957ec2935e1036315c6 (diff)
downloadgcc-245564053af896c806a357d82023a1f1b706651b.zip
gcc-245564053af896c806a357d82023a1f1b706651b.tar.gz
gcc-245564053af896c806a357d82023a1f1b706651b.tar.bz2
(bc_emit_bytecode): Add missing cast.
From-SVN: r8386
Diffstat (limited to 'gcc')
-rw-r--r--gcc/bc-emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c
index 55e4fe4..c8d50bb 100644
--- a/gcc/bc-emit.c
+++ b/gcc/bc-emit.c
@@ -867,7 +867,7 @@ bc_emit_bytecode (bytecode)
char byte;
static int prev_lineno = -1;
- byte = bytecode;
+ byte = (char) bytecode;
#ifdef BCDEBUG_PRINT_CODE
if (lineno != prev_lineno)