Changeset 1729
- Timestamp:
- 02/17/98 01:45:22 (11 years ago)
- Files:
-
- branches/GNU/src/m/iris4d.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/GNU/src/m/iris4d.h
r1715 r1729 114 114 #ifdef USG5_4 115 115 #undef UNEXEC 116 #define UNEXEC unex elf.o116 #define UNEXEC unexsgi.o 117 117 #else 118 118 #define UNEXEC unexmips.o … … 175 175 #define STACK_DIRECTION -1 176 176 177 #ifndef _LP64178 177 /* The standard definitions of these macros would work ok, 179 178 but these are faster because the constants are short. */ … … 184 183 ((var) = ((int)(type) << VALBITS) + (((unsigned) (ptr) << BITS_PER_INT-VALBITS) >> BITS_PER_INT-VALBITS)) 185 184 185 #define XMARKBIT(a) ((a) < 0) 186 #define XSETMARKBIT(a,b) ((a) = ((a) & ~MARKBIT) | ((b) ? MARKBIT : 0)) 186 187 #define XUNMARK(a) ((a) = (((unsigned)(a) << BITS_PER_INT-GCTYPEBITS-VALBITS) >> BITS_PER_INT-GCTYPEBITS-VALBITS)) 187 #endif /* _LP64 */188 188 189 189 #ifndef __GNUC__
