Commit a05fe190 by Ian Lance Taylor

runtime: Fix missing USING_SPLIT_STACK ifdef.

From Uros Bizjak.

From-SVN: r182633
parent 7bde8133
......@@ -346,7 +346,11 @@ sig_tramp (int sig)
mp = runtime_m ();
if (gp != NULL)
__splitstack_getcontext (&gp->stack_context[0]);
{
#ifdef USING_SPLIT_STACK
__splitstack_getcontext (&gp->stack_context[0]);
#endif
}
if (gp != NULL && mp->gsignal != NULL)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment