OSDN Git Service

* jump.c (jump_optimize, follow_jumps, mark_jump_label): Disable some
[pf3gnuchains/gcc-fork.git] / gcc / bytecode.def
index 5ac7284..5b24df7 100644 (file)
@@ -51,7 +51,7 @@ define_operator(neverneverland, abort\(\), (()))
 
 # Stack manipulations.
 define_operator(drop, 0, ((, (SI))))
-define_operator(dup, 0, ((, (SI), (SI, SI))))
+define_operator(duplicate, 0, ((, (SI), (SI, SI))))
 define_operator(over, 0, ((, (SI), (SI, SI))))
 
 # Adjust stack pointer
@@ -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.