Skip to content

Commit

Permalink
* insns.def: fix condition.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
takano32 committed Mar 12, 2013
1 parent 5e04bb6 commit 8f73480
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
Tue Mar 12 17:00:45 2013 TAKANO Mitsuhiro <tak@no32.tk>

* insns.def: fix condition.

Tue Mar 12 16:48:19 2013 TAKANO Mitsuhiro <tak@no32.tk> Tue Mar 12 16:48:19 2013 TAKANO Mitsuhiro <tak@no32.tk>


* rational.c: fix dangling if, else-if and else. * rational.c: fix dangling if, else-if and else.
Expand Down
2 changes: 1 addition & 1 deletion insns.def
Expand Up @@ -866,7 +866,7 @@ trace
} }


EXEC_EVENT_HOOK(th, flag, GET_SELF(), 0, 0 /* id and klass are resolved at callee */, EXEC_EVENT_HOOK(th, flag, GET_SELF(), 0, 0 /* id and klass are resolved at callee */,
(flag & RUBY_EVENT_RETURN | RUBY_EVENT_B_RETURN) ? TOPN(0) : Qundef); (flag & (RUBY_EVENT_RETURN | RUBY_EVENT_B_RETURN)) ? TOPN(0) : Qundef);
} }


/**********************************************************/ /**********************************************************/
Expand Down

0 comments on commit 8f73480

Please sign in to comment.