Commit 2f2c485a by Jan Brittenson

renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to

avoid namespace conflict in stmt.c

From-SVN: r5397
parent e81d77b5
...@@ -286,8 +286,8 @@ define_operator(postinc, ...@@ -286,8 +286,8 @@ define_operator(postinc,
(BI, (SU, SU, P, SI), (SI)))) (BI, (SU, SU, P, SI), (SI))))
# Jumps. # Jumps.
define_operator(jumpif, if \($S1\) pc = code->pc0 + $L1, ((, (T),, (SI)))) define_operator(xjumpif, if \($S1\) pc = code->pc0 + $L1, ((, (T),, (SI))))
define_operator(jumpifnot, if \(! $S1\) pc = code->pc0 + $L1, ((, (T),, (SI)))) define_operator(xjumpifnot, if \(! $S1\) pc = code->pc0 + $L1, ((, (T),, (SI))))
define_operator(jump, pc = code->pc0 + $L1, ((,,,(SI)))) define_operator(jump, pc = code->pc0 + $L1, ((,,,(SI))))
# This is for GCC2. It jumps to the address on the stack. # This is for GCC2. It jumps to the address on the stack.
......
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