[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
BUG: op_div
From: |
Marco Schmidt |
Subject: |
BUG: op_div |
Date: |
Thu, 22 Jun 2000 15:12:20 +0200 |
The operation op_div (t1gload.c) fails to run correct on my IRIX6.5 system.
I'm using the MIPSPRO 7.2-compiler suite. After changing the code:
case op_div:
if (top[1])
*top++ = top[0] / top[1];
else
to:
case op_div:
if (top[1]) {
*top = top[0] / top[1];
++top;
}
else
everything works just fine :-). For me...
Marco Schmidt
- BUG: op_div,
Marco Schmidt <=