diff --git a/src/code/bytecode.c b/src/code/bytecode.c index 44c4c377a210538d066096a2035e6a886206213e..f3742f075c2818354aa6b2804d03f22f4e758c6c 100644 --- a/src/code/bytecode.c +++ b/src/code/bytecode.c @@ -1,5 +1,5 @@ /* - * $Id: bytecode.c,v 1.2 2001/07/20 13:20:38 grubba Exp $ + * $Id: bytecode.c,v 1.3 2001/07/20 13:20:55 grubba Exp $ * * Default bytecode assembler for Pike. * @@ -53,7 +53,7 @@ void ins_f_byte(unsigned int b) add_to_program((unsigned char)b); } -static void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b) +void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b) { switch(b >> 8) { @@ -82,9 +82,9 @@ static void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b) add_to_program((PIKE_OPCODE_T)b); } -static void ins_f_byte_with_2_args(unsigned int a, - unsigned INT32 c, - unsigned INT32 b) +void ins_f_byte_with_2_args(unsigned int a, + unsigned INT32 c, + unsigned INT32 b) { switch(b >> 8) {