Skip to content

Commit

Permalink
* eval_intern.h: use rb_node_newnode() directly.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Sep 17, 2009
1 parent 554e9a8 commit c8c6fde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Thu Sep 17 15:41:02 2009 Koichi Sasada <ko1@atdot.net>

* eval_intern.h: use rb_node_newnode() directly.

Thu Sep 17 15:01:32 2009 Koichi Sasada <ko1@atdot.net>

* blockinlining.c: removed.
Expand Down
2 changes: 1 addition & 1 deletion eval_intern.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ enum ruby_tag_type {
#define TAG_MASK RUBY_TAG_MASK

#define NEW_THROW_OBJECT(val, pt, st) \
((VALUE)NEW_NODE(NODE_LIT, (val), (pt), (st)))
((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
(RNODE((obj))->u2.value = (val))
#define SET_THROWOBJ_STATE(obj, val) \
Expand Down

0 comments on commit c8c6fde

Please sign in to comment.