aboutsummaryrefslogtreecommitdiff
path: root/gcc/bytecode.def
diff options
context:
space:
mode:
authorbson <bson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-09-22 17:55:26 +0000
committerbson <bson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-09-22 17:55:26 +0000
commit41bd1d866685763a862a09bd5cce8faebd9a9a5a (patch)
tree89106a2b1dc436b98b845a46b6d68e49e0564ba6 /gcc/bytecode.def
parentfb2e3f7e4f3a95f11b32bf07015606995470d7a1 (diff)
renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to
avoid namespace conflict in stmt.c git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5397 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bytecode.def')
-rw-r--r--gcc/bytecode.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bytecode.def b/gcc/bytecode.def
index 5ac72842e3a..d146eebf552 100644
--- a/gcc/bytecode.def
+++ b/gcc/bytecode.def
@@ -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.