mirror of git://gcc.gnu.org/git/gcc.git
runtime: Fix build on systems without split stack.
From Uros Bizjak. From-SVN: r203703
This commit is contained in:
parent
f93cbffcb4
commit
c187e58fa2
|
|
@ -399,7 +399,9 @@ sig_tramp_info (int sig, Siginfo *info, void *context)
|
||||||
{
|
{
|
||||||
G *gp;
|
G *gp;
|
||||||
M *mp;
|
M *mp;
|
||||||
|
#ifdef USING_SPLIT_STACK
|
||||||
void *stack_context[10];
|
void *stack_context[10];
|
||||||
|
#endif
|
||||||
|
|
||||||
/* We are now running on the stack registered via sigaltstack.
|
/* We are now running on the stack registered via sigaltstack.
|
||||||
(Actually there is a small span of time between runtime_siginit
|
(Actually there is a small span of time between runtime_siginit
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue