diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-03-16 07:59:10 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-03-16 07:59:10 +0000 |
commit | 94c40622f58348a65df51b39a2db784b70a50f66 (patch) | |
tree | e1ba0ef81ec14a50e760f7974d2759a792181079 /insns.def | |
parent | a14a67978715dcfa53a1d052545cc6ee99dda862 (diff) |
Revert "Add direct marking on iseq operands"
This reverts commit r62706.
It causes SEGV on i686-linux (debian) and armv7l-linux-eabihf:
http://www.rubyist.net/~akr/chkbuild/debian/ruby-trunk/log/20180309T204300Z.diff.html.gz
http://rubyci.s3.amazonaws.com/scw-9d6766/ruby-trunk/log/20180309T211706Z.diff.html.gz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r-- | insns.def | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -972,11 +972,11 @@ setinlinecache /* run iseq only once */ DEFINE_INSN once -(ISEQ iseq, ISE ise) +(ISEQ iseq, IC ic) () (VALUE val) { - val = vm_once_dispatch(ec, iseq, ise); + val = vm_once_dispatch(ec, iseq, ic); } /* case dispatcher, jump by table if possible */ |