Stop worrying about Alliant in bytecode.c
* src/bytecode.c (PUSH): Remove workaround for long-obsolete compiler.
This commit is contained in:
parent
4ba72d3295
commit
9569916d94
1 changed files with 3 additions and 5 deletions
|
@ -338,12 +338,10 @@ relocate_byte_stack (void)
|
|||
|
||||
#define FETCH2 (op = FETCH, op + (FETCH << 8))
|
||||
|
||||
/* Push x onto the execution stack. This used to be #define PUSH(x)
|
||||
(*++stackp = (x)) This oddity is necessary because Alliant can't be
|
||||
bothered to compile the preincrement operator properly, as of 4/91.
|
||||
-JimB */
|
||||
/* Push X onto the execution stack. The expression X should not
|
||||
contain TOP, to avoid competing side effects. */
|
||||
|
||||
#define PUSH(x) (top++, *top = (x))
|
||||
#define PUSH(x) (*++top = (x))
|
||||
|
||||
/* Pop a value off the execution stack. */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue