Fix os-macosx-x86.h

slava 2006-08-09 22:48:36 +00:00
parent af171e41d9
commit ed3424a0a1
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,6 @@
+ 0.84:
- fix amd64 backend
- fix contribs: boids, automata
- sometimes darcs get fails with the httpd
- gdb triggers 'mutliple i/o ops on port' error
@ -17,7 +18,6 @@
- instead of decompiling words, add them to a 'recompile' set; compiler
treats words in the recompile set as if they were not compiled
- see if alien calls can be made faster
- remove literal table
========================================================================

View File

@ -18,6 +18,6 @@ INLINE unsigned long fix_stack_ptr(unsigned long sp)
INLINE void pass_arg0(SIGSEGV_THREAD_STATE_TYPE *thr_state, CELL arg)
{
*SIGSEGV_STACK_POINTER(*thread_state) = arg;
SIGSEGV_STACK_POINTER(*thread_state) -= CELLS;
*SIGSEGV_STACK_POINTER(thr_state) = arg;
SIGSEGV_STACK_POINTER(thr_state) -= CELLS;
}