* reduce UNREACHABLE.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35333 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-04-15 00:06:13 +00:00
parent b860144680
commit 57fb219905
11 changed files with 62 additions and 99 deletions

View file

@ -2109,11 +2109,11 @@ rb_num2ll(VALUE val)
break;
default:
val = rb_to_int(val);
return NUM2LL(val);
break;
}
UNREACHABLE;
val = rb_to_int(val);
return NUM2LL(val);
}
unsigned LONG_LONG
@ -2153,11 +2153,11 @@ rb_num2ull(VALUE val)
break;
default:
val = rb_to_int(val);
return NUM2ULL(val);
break;
}
UNREACHABLE;
val = rb_to_int(val);
return NUM2ULL(val);
}
#endif /* HAVE_LONG_LONG */