diff options
author | Yusuke Endoh <[email protected]> | 2019-08-02 15:03:34 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2019-08-02 15:03:34 +0900 |
commit | a0980f2446c0db735b8ffeb37e241370c458a626 (patch) | |
tree | ff8b0696ccec1e081117963f9e77cdbfab2fd756 /object.c | |
parent | 19006b711d8649b69d6f9dafad073a2f57201dd7 (diff) |
Revert "Add a specialized instruction for `.nil?` calls"
This reverts commit 9faef3113fb4331524b81ba73005ba13fa0ef6c6.
It seemed to cause a failure on macOS Mojave, though I'm unsure how.
https://rubyci.org/logs/rubyci.s3.amazonaws.com/osx1014/ruby-master/log/20190802T034503Z.fail.html.gz
This tentative revert is to check if the issue is actually caused by the
change or not.
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1687,7 +1687,7 @@ rb_true(VALUE obj) */ -MJIT_FUNC_EXPORTED VALUE +static VALUE rb_false(VALUE obj) { return Qfalse; |