mirror of git://gcc.gnu.org/git/gcc.git
generic-morestack.c (__splitstack_releasecontext): Correct call to __morestack_release_segments.
* generic-morestack.c (__splitstack_releasecontext): Correct call to __morestack_release_segments. From-SVN: r184634
This commit is contained in:
parent
cdbfc61de4
commit
e9e053ebfd
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-02-28 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
|
* generic-morestack.c (__splitstack_releasecontext): Correct call
|
||||||
|
to __morestack_release_segments.
|
||||||
|
|
||||||
2012-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
2012-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
|
||||||
|
|
||||||
PR target/52390
|
PR target/52390
|
||||||
|
|
|
||||||
|
|
@ -1104,7 +1104,9 @@ __splitstack_resetcontext (void *context[10], size_t *size)
|
||||||
void
|
void
|
||||||
__splitstack_releasecontext (void *context[10])
|
__splitstack_releasecontext (void *context[10])
|
||||||
{
|
{
|
||||||
__morestack_release_segments (context[MORESTACK_SEGMENTS], 1);
|
__morestack_release_segments (((struct stack_segment **)
|
||||||
|
&context[MORESTACK_SEGMENTS]),
|
||||||
|
1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Like __splitstack_block_signals, but operating on CONTEXT, rather
|
/* Like __splitstack_block_signals, but operating on CONTEXT, rather
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue