diff options
author | Jan Brittenson <bson@gnu.org> | 1993-09-22 10:55:26 -0700 |
---|---|---|
committer | Jan Brittenson <bson@gnu.org> | 1993-09-22 10:55:26 -0700 |
commit | 2f2c485abddce319c5f2fa9e8f44a458655e7404 (patch) | |
tree | 89106a2b1dc436b98b845a46b6d68e49e0564ba6 /gcc | |
parent | e81d77b5026906c6b6014b9607b7f472108bba9c (diff) | |
download | gcc-2f2c485abddce319c5f2fa9e8f44a458655e7404.zip gcc-2f2c485abddce319c5f2fa9e8f44a458655e7404.tar.gz gcc-2f2c485abddce319c5f2fa9e8f44a458655e7404.tar.bz2 |
renamed jumpif and jumpifnot to xjumpif and xjumpifnot respectively to
avoid namespace conflict in stmt.c
From-SVN: r5397
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/bytecode.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bytecode.def b/gcc/bytecode.def index 5ac7284..d146eeb 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. |