From c9bb3cae315aa7d17f620e9bcaa9223b1e6d2c07 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 10 Aug 2017 06:26:52 +0000 Subject: use VM_UNREACHABLE() instead of rb_bug(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cont.c') diff --git a/cont.c b/cont.c index 5f5ce63e3a..4f9556c7dd 100644 --- a/cont.c +++ b/cont.c @@ -1360,7 +1360,7 @@ rb_fiber_start(void) } rb_fiber_terminate(fib); - rb_bug("rb_fiber_start: unreachable"); + VM_UNREACHABLE(rb_fiber_start); } static rb_fiber_t * @@ -1478,14 +1478,14 @@ fiber_store(rb_fiber_t *next_fib, rb_thread_t *th) if (fib->cont.argc == -1) rb_exc_raise(fib->cont.value); if (next_fib->cont.value == Qundef) { cont_restore_0(&next_fib->cont, &next_fib->cont.value); - rb_bug("rb_fiber_resume: unreachable"); + VM_UNREACHABLE(fiber_store); } return fib->cont.value; } else { VALUE undef = Qundef; cont_restore_0(&next_fib->cont, &undef); - rb_bug("rb_fiber_resume: unreachable"); + VM_UNREACHABLE(fiber_store); } #endif /* FIBER_USE_NATIVE */ } -- cgit v1.2.3