mirror of
https://github.com/Interlisp/maiko.git
synced 2026-05-03 14:59:26 +00:00
Remove I386-only, undefined macro usages: I386Round, I386Reset. (#185)
These macros aren't actually defined anywhere in our code and aren't used outside of the old support for the Sun I386 hardware.
This commit is contained in:
@@ -56,14 +56,7 @@ LispPTR N_OP_ubfloat1(int arg, int alpha) {
|
||||
int val;
|
||||
temp = *(float *)&arg;
|
||||
if ((temp > ((float)0x7fffffff)) || (temp < ((float)0x80000000))) ERROR_EXIT(arg);
|
||||
#ifdef I386
|
||||
I386Reset;
|
||||
#endif /* I386 */
|
||||
|
||||
val = (int)temp;
|
||||
#ifdef I386
|
||||
I386Round;
|
||||
#endif
|
||||
N_ARITH_SWITCH(val);
|
||||
}
|
||||
default: ERROR_EXIT(arg);
|
||||
|
||||
Reference in New Issue
Block a user