mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:41:18 +08:00
runtime: Fix build on non-split-stack systems.
From-SVN: r200983
This commit is contained in:
parent
1c858af58f
commit
081e7aadae
@ -1666,7 +1666,11 @@ runtime_entersyscall()
|
||||
&g->gcnext_segment, &g->gcnext_sp,
|
||||
&g->gcinitial_sp);
|
||||
#else
|
||||
g->gcnext_sp = (byte *) &v;
|
||||
{
|
||||
uint32 v;
|
||||
|
||||
g->gcnext_sp = (byte *) &v;
|
||||
}
|
||||
#endif
|
||||
|
||||
// Save the registers in the g structure so that any pointers
|
||||
@ -1713,7 +1717,7 @@ runtime_entersyscallblock(void)
|
||||
&g->gcnext_segment, &g->gcnext_sp,
|
||||
&g->gcinitial_sp);
|
||||
#else
|
||||
g->gcnext_sp = (byte *) &v;
|
||||
g->gcnext_sp = (byte *) &p;
|
||||
#endif
|
||||
|
||||
// Save the registers in the g structure so that any pointers
|
||||
|
Loading…
x
Reference in New Issue
Block a user