1
0
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:
Bruce Mitchener
2021-01-06 01:26:42 +07:00
committed by GitHub
parent cb815c34a1
commit 12b431dbd0
3 changed files with 3 additions and 22 deletions

View File

@@ -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);