diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-04 16:31:59 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-04 16:31:59 -0500 |
commit | 245564053af896c806a357d82023a1f1b706651b (patch) | |
tree | f8158cbd6008cca1619534e5d5e8dc34ed0343cf /gcc | |
parent | 13837939f45fd56fd608a957ec2935e1036315c6 (diff) | |
download | gcc-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.c | 2 |
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) |