mirror of git://gcc.gnu.org/git/gcc.git
runtime: Fix missing USING_SPLIT_STACK ifdef.
From Uros Bizjak. From-SVN: r182633
This commit is contained in:
parent
7bde813394
commit
a05fe19071
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue