Commit c2d46a43 authored by Jun Hiroe's avatar Jun Hiroe

Refactor fix_and()

parent 1bf4633c
...@@ -915,13 +915,11 @@ static mrb_value ...@@ -915,13 +915,11 @@ static mrb_value
fix_and(mrb_state *mrb, mrb_value x) fix_and(mrb_state *mrb, mrb_value x)
{ {
mrb_value y; mrb_value y;
mrb_int val;
mrb_get_args(mrb, "o", &y); mrb_get_args(mrb, "o", &y);
y = bit_coerce(mrb, y); y = bit_coerce(mrb, y);
val = mrb_fixnum(x) & mrb_fixnum(y); return mrb_fixnum_value(mrb_fixnum(x) & mrb_fixnum(y));
return mrb_fixnum_value(val);
} }
/* 15.2.8.3.10 */ /* 15.2.8.3.10 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment