parse.y: use idGE for tGEQ

* parse.y (arg): use ID directly for '>=' operator, without
  TOKEN2ID macro.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-04-04 23:42:00 +00:00
parent e317813625
commit 6b43aa5f67

View file

@ -2155,7 +2155,7 @@ arg : lhs '=' arg_rhs
}
| arg tGEQ arg
{
$$ = call_bin_op($1, TOKEN2ID((enum ruby_method_ids)tGEQ), $3);
$$ = call_bin_op($1, idGE, $3);
}
| arg '<' arg
{