From: Jan Brittenson Date: Wed, 22 Sep 1993 17:55:26 +0000 (-0700) Subject: renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f2c485abddce319c5f2fa9e8f44a458655e7404;p=gcc.git renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to avoid namespace conflict in stmt.c From-SVN: r5397 --- 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.