Make rt_stackBottom return the right fixed value for darwin.

This commit is contained in:
Christian Kamm
2008-08-29 15:01:48 +02:00
parent 3e5a20cf6b
commit 01b6538f6f

View File

@@ -87,7 +87,8 @@ extern (C) void* rt_stackBottom()
}
else version( darwin )
{
static assert( false, "darwin not supported" );
// darwin has a fixed stack bottom
return cast(void*) 0xc0000000;
}
else
{