summaryrefslogtreecommitdiff
path: root/darwin_stop_world.c
diff options
context:
space:
mode:
Diffstat (limited to 'darwin_stop_world.c')
-rw-r--r--darwin_stop_world.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/darwin_stop_world.c b/darwin_stop_world.c
index 37aee97d..aef58c2b 100644
--- a/darwin_stop_world.c
+++ b/darwin_stop_world.c
@@ -55,21 +55,18 @@ typedef struct StackFrame {
GC_INNER ptr_t GC_FindTopOfStack(unsigned long stack_start)
{
- StackFrame *frame;
+ StackFrame *frame = (StackFrame *)stack_start;
-# ifdef POWERPC
- if (stack_start == 0) {
+ if (stack_start == 0) {
+# ifdef POWERPC
# if CPP_WORDSZ == 32
__asm__ __volatile__ ("lwz %0,0(r1)" : "=r" (frame));
# else
__asm__ __volatile__ ("ld %0,0(r1)" : "=r" (frame));
# endif
- } else
-# else
- GC_ASSERT(stack_start != 0); /* not implemented */
-# endif /* !POWERPC */
- /* else */ {
- frame = (StackFrame *)stack_start;
+# else
+ ABORT("GC_FindTopOfStack(0) is not implemented");
+# endif
}
# ifdef DEBUG_THREADS_EXTRA