(bc_emit_bytecode): Add missing cast.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 4 Nov 1994 21:31:59 +0000 (16:31 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 4 Nov 1994 21:31:59 +0000 (16:31 -0500)
From-SVN: r8386

gcc/bc-emit.c

index 55e4fe4f39bb8aa1919a3535f4877f5dac4d8fe4..c8d50bb7ebc25ccafd187f7832c7e6fb67d4cbdd 100644 (file)
@@ -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)