From 2f2c485abddce319c5f2fa9e8f44a458655e7404 Mon Sep 17 00:00:00 2001 From: Jan Brittenson Date: Wed, 22 Sep 1993 10:55:26 -0700 Subject: [PATCH] renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to avoid namespace conflict in stmt.c From-SVN: r5397 --- gcc/bytecode.def | 4 ++-- 1 file 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. -- 2.30.2