renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to
authorJan Brittenson <bson@gnu.org>
Wed, 22 Sep 1993 17:55:26 +0000 (10:55 -0700)
committerJan Brittenson <bson@gnu.org>
Wed, 22 Sep 1993 17:55:26 +0000 (10:55 -0700)
avoid namespace conflict in stmt.c

From-SVN: r5397

gcc/bytecode.def

index 5ac72842e3a342c8987479b0f29e84a03be86bef..d146eebf55257223469e0eb887df8130d51dc078 100644 (file)
@@ -286,8 +286,8 @@ define_operator(postinc,
                 (BI, (SU, SU, P, SI), (SI))))
 
 # Jumps.
-define_operator(jumpif, if \($S1\) pc = code->pc0 + $L1, ((, (T),, (SI))))
-define_operator(jumpifnot, if \(! $S1\) pc = code->pc0 + $L1, ((, (T),, (SI))))
+define_operator(xjumpif, 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))))
 
 # This is for GCC2. It jumps to the address on the stack.