Commit b6532e57 by Andreas Schwab Committed by Andreas Schwab

* expr.c (JSR): Avoid undefined operation on PC.

From-SVN: r54987
parent 97679694
2002-06-25 Andreas Schwab <schwab@suse.de>
* expr.c (JSR): Avoid undefined operation on PC.
2002-06-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* decl.c (clear_binding_level): Const-ify.
......
......@@ -2946,7 +2946,11 @@ process_jvm_instruction (PC, byte_ops, length)
}
#define JSR(OPERAND_TYPE, OPERAND_VALUE) \
build_java_jsr (oldpc+OPERAND_VALUE, PC);
{ \
/* OPERAND_VALUE may have side-effects on PC */ \
int opvalue = OPERAND_VALUE; \
build_java_jsr (oldpc + opvalue, PC); \
}
/* Push a constant onto the stack. */
#define PUSHC(OPERAND_TYPE, OPERAND_VALUE) \
......
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