aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-18 07:13:16 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-18 07:13:16 +0000
commit62a0cfaa95baa27baaae66e3beb0e2d8a83c9339 (patch)
tree5a598f600138116d3e0a91ae2f7c27c37c9e7a92
parent7a64e2b4b4bc86def7383ab0d190348cd48d3eff (diff)
downloadruby-62a0cfaa95baa27baaae66e3beb0e2d8a83c9339.tar.gz
* vm_core.h: define USE_LAZY_LOAD if it is not defined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53186 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--vm_core.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index eb1c6d47fd..1038a6acdf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Dec 18 16:12:13 2015 Koichi Sasada <ko1@atdot.net>
+
+ * vm_core.h: define USE_LAZY_LOAD if it is not defined.
+
Fri Dec 18 15:40:06 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/stringio/stringio.c (strio_unget_bytes): extract from
diff --git a/vm_core.h b/vm_core.h
index 89a242acc6..38fcc0c333 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -402,10 +402,8 @@ struct rb_iseq_struct {
} aux;
};
-#define USE_LAZY_LOAD 0
-
#ifndef USE_LAZY_LOAD
-#define USE_LAZY_LOAD
+#define USE_LAZY_LOAD 0
#endif
#if USE_LAZY_LOAD