diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-10-15 22:34:53 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-10-15 22:34:53 +0000 |
commit | baeb94fa3db4325d869f66fdbab3975efda21e92 (patch) | |
tree | 6a189ac03f43a3e19924185a2e87fe2a6ee5f543 /cont.c | |
parent | 0bd492c6bf0d8199a6783184f2599968ac328ca8 (diff) |
cont.c: Small code cleanup
Remove variable that is used only once, several lines after
initialization.
* cont.c (cont_capture): remove unnecessary variable
[ruby-core:65518] [Feature #10341]
Author: Knut Franke <[email protected]>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r-- | cont.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -450,14 +450,13 @@ static VALUE cont_capture(volatile int *stat) { rb_context_t *cont; - rb_thread_t *th = GET_THREAD(), *sth; + rb_thread_t *th = GET_THREAD(); volatile VALUE contval; THREAD_MUST_BE_RUNNING(th); rb_vm_stack_to_heap(th); cont = cont_new(rb_cContinuation); contval = cont->self; - sth = &cont->saved_thread; #ifdef CAPTURE_JUST_VALID_VM_STACK cont->vm_stack_slen = th->cfp->sp + th->mark_stack_len - th->stack; @@ -469,7 +468,7 @@ cont_capture(volatile int *stat) cont->vm_stack = ALLOC_N(VALUE, th->stack_size); MEMCPY(cont->vm_stack, th->stack, VALUE, th->stack_size); #endif - sth->stack = 0; + cont->saved_thread.stack = 0; cont_save_machine_stack(th, cont); |