Commit 00abfc00 by Per Bothner Committed by Per Bothner

expr.c (CHECK_PC_IN_RANGE): Add void cast to kill warnings.

�
	* expr.c (CHECK_PC_IN_RANGE):  Add void cast to kill warnings.

From-SVN: r23851
parent b12da25e
Wed Nov 25 09:47:15 1998 Per Bothner <bothner@cygnus.com>
* expr.c (CHECK_PC_IN_RANGE): Add void cast to kill warnings.
Wed Nov 25 00:50:58 1998 Marc Espie <espie@quatramaran.ens.fr>
* jcf-write.c (generate_bytecode_conditional): Fix typo.
......
......@@ -1884,7 +1884,7 @@ expand_byte_code (jcf, method)
#define VAR_INDEX_1 (saw_index = 1, IMMEDIATE_u1)
#define VAR_INDEX_2 (saw_index = 1, IMMEDIATE_u2)
#define CHECK_PC_IN_RANGE(PC) 1 /* Already handled by verifier. */
#define CHECK_PC_IN_RANGE(PC) ((void)1) /* Already handled by verifier. */
instruction_bits = oballoc (length + 1);
bzero (instruction_bits, length + 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment